Skip to content

Commit

Permalink
version 0.6.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Richard Neomy committed Dec 17, 2022
1 parent 3c02a54 commit 6d3e0f4
Show file tree
Hide file tree
Showing 8 changed files with 204 additions and 370 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ A browser extension which uses the native tab discarding method (`chrome.tabs.di

### Links

* Homepage: https://add0n.com/tab-discard.html
* Homepage: https://webextension.org/listing/tab-discard.html
* Privacy Policy: https://webextension.org/privacy-policy/extension/tab-discard.html
* Chrome: https://chrome.google.com/webstore/detail/auto-tab-discard/jhnleheckmknfcgijgkadoemagpecfol
* Edge: https://microsoftedge.microsoft.com/addons/detail/auto-tab-discard/nfkkljlcjnkngcmdpcammanncbhkndfe
Expand Down
7 changes: 5 additions & 2 deletions v3/_locales/en/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,10 @@
"message": "Do not discard a tab when form changes are not yet submitted"
},
"options_battery": {
"message": "Do not discard tabs when computer is connected to a power source"
"message": "Do not discard tabs when the computer is connected to a power source"
},
"options_online": {
"message": "Do not discard tabs when there is no internet connection and tab is not cached"
"message": "Do not discard tabs when there is no internet connection and the tab is not cached"
},
"options_notification_permission": {
"message": "Do not discard a tab if it can display desktop notifications"
Expand Down Expand Up @@ -188,6 +188,9 @@
"options_save": {
"message": "Save Options"
},
"options_save_msg": {
"message": "Options saved"
},
"options_support": {
"message": "Support Development"
},
Expand Down
314 changes: 195 additions & 119 deletions v3/_locales/nl/messages.json

Large diffs are not rendered by default.

2 changes: 0 additions & 2 deletions v3/data/options/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,6 @@
</tr>
</tbody>
</table>
<div id="explore" data-cols="5"></div>

<div id="rate">
<label data-i18n="options_rate_desc"></label>
Expand Down Expand Up @@ -302,6 +301,5 @@
</p>

<script src="index.js"></script>
<script async src="matched.js"></script>
</body>
</html>
2 changes: 1 addition & 1 deletion v3/data/options/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ document.getElementById('save').addEventListener('click', () => {
'./plugins/unloaded/core.js': document.getElementById('./plugins/unloaded/core.js').checked,
'./plugins/youtube/core.js': document.getElementById('./plugins/youtube/core.js').checked
}, () => {
info.textContent = 'Options saved';
info.textContent = chrome.i18n.getMessage('options_save_msg');
restore();
window.setTimeout(() => info.textContent = '', 750);
});
Expand Down
172 changes: 0 additions & 172 deletions v3/data/options/matched.js

This file was deleted.

71 changes: 0 additions & 71 deletions v3/data/options/matched.json

This file was deleted.

4 changes: 2 additions & 2 deletions v3/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"manifest_version": 3,
"version": "0.6.6",
"version": "0.6.7",
"name": "Auto Tab Discard",
"description": "__MSG_app_description__",
"default_locale": "en",
Expand Down Expand Up @@ -47,7 +47,7 @@
"page": "data/options/index.html",
"open_in_tab": true
},
"homepage_url": "https://add0n.com/tab-discard.html",
"homepage_url": "https://webextension.org/listing/tab-discard.html",
"commands": {
"_execute_action": {},
"discard-tab": {
Expand Down

0 comments on commit 6d3e0f4

Please sign in to comment.