Skip to content

Commit

Permalink
v1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
WorldLanguages committed Sep 21, 2019
1 parent 423e093 commit e3b66c5
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion _locales/en/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"message": "Disable automatic tab discarding"
},
"manifest_description": {
"message": "Stops Chrome from suspending tabs, and reloading them when you switch to them"
"message": "Stops Chrome from suspending tabs, and reloading them when you switch to them."
},
"manifest_title": {
"message": "Automatic tab discarding currently disabled\nDisable/uninstall this extension to enable it"
Expand Down
2 changes: 1 addition & 1 deletion _locales/es/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"message": "Deshabilitar la suspensión de pestañas"
},
"manifest_description": {
"message": "Evita que Chrome suspenda pestañas y se actualicen cuando vuelves a ellas"
"message": "Evita que Chrome suspenda pestañas y se actualicen cuando vuelves a ellas."
},
"manifest_title": {
"message": "La suspensión de pestañas está deshabilitada\nDesactiva/desinstala esta extensión para activarla"
Expand Down
1 change: 0 additions & 1 deletion background.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
chrome.tabs.onCreated.addListener(function(tab) {
if(tab.status === "complete") chrome.tabs.reload(tab.id);
chrome.tabs.update(tab.id, {autoDiscardable: false});
});

Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "__MSG_manifest_name__",
"description": "__MSG_manifest_description__",
"version": "1.0.3",
"version": "1.0.4",
"background": {
"scripts": ["background.js"],
"persistent": false
Expand Down

0 comments on commit e3b66c5

Please sign in to comment.