Skip to content

Commit

Permalink
Merge pull request #54 from joelthorner/2.x
Browse files Browse the repository at this point in the history
Remove os autologin recursive xD
  • Loading branch information
joelthorner authored Sep 25, 2018
2 parents 45b71dc + f1820ea commit c6d6385
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 29 deletions.
5 changes: 3 additions & 2 deletions js/background.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
var manifestData = chrome.runtime.getManifest();

function executeScripts(tabId, injectDetailsArray) {
function createCallback(tabId, injectDetails, innerCallback) {
return function () {
Expand Down Expand Up @@ -71,7 +73,7 @@ chrome.runtime.onMessageExternal.addListener(
if (request) {
if (request.message) {
if (request.message == "version") {
sendResponse({ version: "2.x.x" });
sendResponse({ version: manifestData.version });
}
}
}
Expand All @@ -80,7 +82,6 @@ chrome.runtime.onMessageExternal.addListener(
);

// new version notify
var manifestData = chrome.runtime.getManifest();
var opt = {
type: 'basic',
title: 'TLmanaGer ' + manifestData.version + '!',
Expand Down
18 changes: 0 additions & 18 deletions js/inject/auto-login-sandbox.js

This file was deleted.

6 changes: 6 additions & 0 deletions js/optionsData.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,12 @@ var AVATARS /* The legend of Aang */ = [
var CHANGELOG = [

{
version: "2.1.2",
date: "25 Sep 2018",
lines: [
"Remove os autologin recursive xD"
]
}, {
version: "2.1.1",
date: "23 Sep 2018",
lines: [
Expand Down
10 changes: 1 addition & 9 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "TLmanaGer",
"version": "2.1.1",
"version": "2.1.2",
"manifest_version": 2,
"description": "Desarrollamiento tool",
"homepage_url": "https://github.com/joelthorner/TLmanaGer",
Expand Down Expand Up @@ -107,14 +107,6 @@
"js/inject/force-forceview.js"
]
},
{
"matches": [
"*://*.sandbox.logicommerce.net/*"
],
"js": [
"js/inject/auto-login-sandbox.js"
]
},
{
"matches": [
"<all_urls>"
Expand Down

0 comments on commit c6d6385

Please sign in to comment.