Unclosed tabs
Some pages you want to browse later?just close the browser with the pages open,this extension will save them for you.
Co to jest Unclosed tabs?
Unclosed tabs to rozszerzenie Chrome opracowane przez Michael Anx, a jego główną funkcją jest „Some pages you want to browse later?just close the browser with the pages open,this extension will save them for you.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Unclosed tabs
Pobierz pliki rozszerzeń Unclosed tabs 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
Some pages you want to browse later?just close the browser with the pages open,this extension will save them for you.
Podstawowe informacje o rozszerzeniu
Nazwa | Unclosed tabs |
ID | pnndppofhelodlbmmdicmbhnppanheca |
Oficjalny URL | https://chromewebstore.google.com/detail/unclosed-tabs/pnndppofhelodlbmmdicmbhnppanheca |
Opis | Some pages you want to browse later?just close the browser with the pages open,this extension will save them for you. |
Rozmiar pliku | 159 KB |
Liczba instalacji | 37 |
Aktualna Wersja | 0.0.4 |
Ostatnia Aktualizacja | 2017-09-25 |
Data Publikacji | 2017-09-25 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | Michael Anx |
Typ Płatności | free |
Obsługiwane Języki | en,zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_extName__", "version": "0.0.4", "default_locale": "en", "description": "__MSG_extDiscrption__", "background": { "page": "background.html" }, "icons": { "48": "icon.png", "128": "icon-128.png" }, "options_page": "options.html", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html", "default_title": "__MSG_extName__" }, "permissions": [ "tabs", "unlimitedStorage", "chrome:\/\/favicon\/", "webNavigation", "webRequest", "webRequestBlocking", "http:\/\/*\/*", "https:\/\/*\/*", "background" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/content.js", "js\/init.js" ], "run_at": "document_start", "all_frames": true }, { "js": [ "js\/support\/ext.js", "js\/support\/support.js" ], "run_at": "document_start", "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "all_frames": true, "exclude_globs": [] } ], "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'" } |