SameTab - keep only one copy of the tab open
SameTab is a small extension for Chrome that checks if a newly opened tab is the same to one of already opened. If it finds one it…
Vad är SameTab - keep only one copy of the tab open?
SameTab - keep only one copy of the tab open är en Chrome-tillägg utvecklad av valentin.alekseev, och dess huvudfunktion är "SameTab is a small extension for Chrome that checks if a newly opened tab is the same to one of already opened. If it finds one it…".
Ladda ner SameTab - keep only one copy of the tab open-förlängningens CRX-fil
Ladda ner SameTab - keep only one copy of the tab open-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
SameTab is a small extension for Chrome that checks if a newly opened tab is the same to one of already opened. If it finds one it will close the duplicate freeing up some memory and tab space.
Grundläggande Information om Tillägg
Namn | SameTab - keep only one copy of the tab open |
ID | egndhnnhgedkbnkdfjpakgpclhbjcjfb |
Officiell webbadress | https://chromewebstore.google.com/detail/sametab-keep-only-one-cop/egndhnnhgedkbnkdfjpakgpclhbjcjfb |
Beskrivning | SameTab is a small extension for Chrome that checks if a newly opened tab is the same to one of already opened. If it finds one it… |
Filstorlek | 8.9 KB |
Antal Installationer | 12 |
Aktuell Version | 1.1 |
Senast Uppdaterad | 2016-02-16 |
Publiceringsdatum | 2016-02-16 |
Betyg | 3.50/5 Totalt 2 Betyg |
Utvecklare | valentin.alekseev |
Betalningssätt | free |
Hjälpsida URL | https://github.com/valentinalexeev/chrome-sametab |
Stödda Språk | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "SameTab - keep only one copy of the tab open", "description": "", "version": "1.1", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "background": { "scripts": [ "index.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ] } ], "permissions": [ "tabs", "activeTab", "notifications", "storage" ] } |