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…
Hvad er SameTab - keep only one copy of the tab open?
SameTab - keep only one copy of the tab open er en Chrome-udvidelse udviklet af valentin.alekseev, og dens hovedfunktion er "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…".
Download SameTab - keep only one copy of the tab open-udvidelses-CRX-fil
Download SameTab - keep only one copy of the tab open-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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æggende oplysninger om udvidelsen
Navn | SameTab - keep only one copy of the tab open |
ID | egndhnnhgedkbnkdfjpakgpclhbjcjfb |
Officiel URL | https://chromewebstore.google.com/detail/sametab-keep-only-one-cop/egndhnnhgedkbnkdfjpakgpclhbjcjfb |
Beskrivelse | 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… |
Filstørrelse | 8.9 KB |
Antal Installationer | 12 |
Nuværende Version | 1.1 |
Senest Opdateret | 2016-02-16 |
Udgivelsesdato | 2016-02-16 |
Bedømmelse | 3.50/5 Samlet 2 Bedømmelser |
Udvikler | valentin.alekseev |
Betalingsmetode | free |
Hjælpeside-URL | https://github.com/valentinalexeev/chrome-sametab |
Understøttede Sprog | 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" ] } |