Unclosed tabs
Some pages you want to browse later?just close the browser with the pages open,this extension will save them for you.
Was ist Unclosed tabs?
Unclosed tabs ist eine Chrome-Erweiterung, die von Michael Anx entwickelt wurde, und ihr Hauptmerkmal ist "Some pages you want to browse later?just close the browser with the pages open,this extension will save them for you.".
Erweiterungsscreenshots
Unclosed tabs-Erweiterungs-CRX-Datei herunterladen
Laden Sie Unclosed tabs-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Some pages you want to browse later?just close the browser with the pages open,this extension will save them for you.
Grundlegende Informationen zur Erweiterung
Name | Unclosed tabs |
ID | pnndppofhelodlbmmdicmbhnppanheca |
Offizielle URL | https://chromewebstore.google.com/detail/unclosed-tabs/pnndppofhelodlbmmdicmbhnppanheca |
Beschreibung | Some pages you want to browse later?just close the browser with the pages open,this extension will save them for you. |
Dateigröße | 159 KB |
Installationsanzahl | 37 |
Aktuelle Version | 0.0.4 |
Letztes Update | 2017-09-25 |
Veröffentlichungsdatum | 2017-09-25 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | Michael Anx |
Zahlungsart | free |
Unterstützte Sprachen | 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'" } |