Skip to content

Commit e3b66c5

Browse files
v1.0.4
1 parent 423e093 commit e3b66c5

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

_locales/en/messages.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"message": "Disable automatic tab discarding"
44
},
55
"manifest_description": {
6-
"message": "Stops Chrome from suspending tabs, and reloading them when you switch to them"
6+
"message": "Stops Chrome from suspending tabs, and reloading them when you switch to them."
77
},
88
"manifest_title": {
99
"message": "Automatic tab discarding currently disabled\nDisable/uninstall this extension to enable it"

_locales/es/messages.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"message": "Deshabilitar la suspensión de pestañas"
44
},
55
"manifest_description": {
6-
"message": "Evita que Chrome suspenda pestañas y se actualicen cuando vuelves a ellas"
6+
"message": "Evita que Chrome suspenda pestañas y se actualicen cuando vuelves a ellas."
77
},
88
"manifest_title": {
99
"message": "La suspensión de pestañas está deshabilitada\nDesactiva/desinstala esta extensión para activarla"

background.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
chrome.tabs.onCreated.addListener(function(tab) {
2-
if(tab.status === "complete") chrome.tabs.reload(tab.id);
32
chrome.tabs.update(tab.id, {autoDiscardable: false});
43
});
54

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 2,
33
"name": "__MSG_manifest_name__",
44
"description": "__MSG_manifest_description__",
5-
"version": "1.0.3",
5+
"version": "1.0.4",
66
"background": {
77
"scripts": ["background.js"],
88
"persistent": false

0 commit comments

Comments
 (0)