Compare commits
10 Commits
516190f38c
...
8ab3e48812
Author | SHA1 | Date | |
---|---|---|---|
8ab3e48812 | |||
e950136ad2 | |||
3fcdc86679 | |||
1efcc58dc8 | |||
dd8c8b8d2c | |||
9c12be5c90 | |||
b0541bea2a | |||
16253ceea9 | |||
482901e626 | |||
8cb464f66e |
7
LICENSE
Normal file
@@ -0,0 +1,7 @@
|
||||
Copyright 2024 Rose / Tangent
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
@@ -25,7 +25,7 @@ var shuffle = function (array) {
|
||||
return array;
|
||||
};
|
||||
|
||||
browser.browserAction.onClicked.addListener(function() {
|
||||
browser.action.onClicked.addListener(function() {
|
||||
browser.tabs.query({}, function(tabs) {
|
||||
let count = Math.floor(tabs.length / 2) + 1 // I don't remember why we need an extra +1 here, but it is necessary
|
||||
var ok = confirm("Are you sure you want to close " + count + " tabs?")
|
||||
@@ -44,7 +44,7 @@ browser.browserAction.onClicked.addListener(function() {
|
||||
function updateCount() {
|
||||
browser.tabs.query({}, function(tabs) {
|
||||
let count = Math.floor(tabs.length / 2)
|
||||
browser.browserAction.setBadgeText({ text: "" + count })
|
||||
browser.action.setBadgeText({ text: "" + count })
|
||||
})
|
||||
}
|
||||
|
Before Width: | Height: | Size: 5.1 KiB After Width: | Height: | Size: 5.1 KiB |
Before Width: | Height: | Size: 546 B After Width: | Height: | Size: 546 B |
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
34
Manifest v3 version/manifest.json
Normal file
@@ -0,0 +1,34 @@
|
||||
{
|
||||
"manifest_version": 3,
|
||||
"name": "The Snap",
|
||||
"description": "Too many tabs open? Halve your workload.",
|
||||
"version": "1.1.3",
|
||||
"icons": {
|
||||
"16": "images/gauntlet16.png",
|
||||
"48": "images/gauntlet48.png",
|
||||
"128": "images/gauntlet128.png"
|
||||
},
|
||||
"author": "rose@tangentfox.com",
|
||||
"homepage_url": "https://blog.tangentfox.com/the-snap-browser-extension/",
|
||||
"developer": {
|
||||
"name": "Rose (Tangent) Liverman",
|
||||
"url": "https://blog.tangentfox.com/the-snap-browser-extension/"
|
||||
},
|
||||
"action": {},
|
||||
"permissions": [
|
||||
"tabs"
|
||||
],
|
||||
"background": {
|
||||
"service_worker": "background.js",
|
||||
"scripts": [ "background.js" ],
|
||||
"persistent": false
|
||||
},
|
||||
"browser_specific_settings": {
|
||||
"gecko": {
|
||||
"id": "{7b9819b6-6bd3-4cb8-a5b3-9ae6eb2e75ea}"
|
||||
},
|
||||
"gecko_android": {
|
||||
"id": "{7b9819b6-6bd3-4cb8-a5b3-9ae6eb2e75e0}"
|
||||
}
|
||||
}
|
||||
}
|
@@ -1,3 +1,9 @@
|
||||
# snap
|
||||
|
||||
The Snap balances your browsing habits by clearing tabs.
|
||||
The Snap balances your browsing habits by clearing tabs.
|
||||
|
||||
---
|
||||
|
||||
This repo is hosted at https://gitea.tangentfox.com/tangent/The-Snap and force-pushed to GitHub when commits are made.
|
||||
|
||||
Feel free to submit pull requests or whatever, but know that I would have to manage them over there.
|
||||
|
Before Width: | Height: | Size: 33 KiB After Width: | Height: | Size: 33 KiB |
Before Width: | Height: | Size: 1.1 KiB |
@@ -1,21 +0,0 @@
|
||||
{
|
||||
"manifest_version": 3,
|
||||
"name": "The Snap",
|
||||
"description": "Too many tabs open? Halve your workload.",
|
||||
"version": "1.1",
|
||||
"icons": {
|
||||
"16": "images/gauntlet16.png",
|
||||
"48": "images/gauntlet48.png",
|
||||
"128": "images/gauntlet128.png"
|
||||
},
|
||||
"author": "rose@tangentfox.com",
|
||||
"action": {},
|
||||
"permissions": [
|
||||
"tabs"
|
||||
],
|
||||
"background": {
|
||||
"service_worker": "background.js",
|
||||
"scripts": [ "background.js" ],
|
||||
"persistent": true
|
||||
}
|
||||
}
|