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…
Co to jest SameTab - keep only one copy of the tab open?
SameTab - keep only one copy of the tab open to rozszerzenie Chrome opracowane przez valentin.alekseev, a jego główną funkcją jest „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…”.
Pobierz plik CRX rozszerzenia SameTab - keep only one copy of the tab open
Pobierz pliki rozszerzeń SameTab - keep only one copy of the tab open w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | SameTab - keep only one copy of the tab open |
ID | egndhnnhgedkbnkdfjpakgpclhbjcjfb |
Oficjalny URL | https://chromewebstore.google.com/detail/sametab-keep-only-one-cop/egndhnnhgedkbnkdfjpakgpclhbjcjfb |
Opis | 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… |
Rozmiar pliku | 8.9 KB |
Liczba instalacji | 12 |
Aktualna Wersja | 1.1 |
Ostatnia Aktualizacja | 2016-02-16 |
Data Publikacji | 2016-02-16 |
Ocena | 3.50/5 Łącznie 2 Oceny |
Deweloper | valentin.alekseev |
Typ Płatności | free |
Adres URL Strony Pomocy | https://github.com/valentinalexeev/chrome-sametab |
Obsługiwane Języki | 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" ] } |