Unclosed tabs
Some pages you want to browse later?just close the browser with the pages open,this extension will save them for you.
Unclosed tabsとは何ですか?
Unclosed tabsはMichael Anxによって開発されたChromeの拡張機能で、その主な機能は「Some pages you want to browse later?just close the browser with the pages open,this extension will save them for you.」です。
拡張機能のスクリーンショット
Unclosed tabs拡張機能のCRXファイルをダウンロード
Unclosed tabs拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Some pages you want to browse later?just close the browser with the pages open,this extension will save them for you.
拡張機能の基本情報
名前 | Unclosed tabs |
ID | pnndppofhelodlbmmdicmbhnppanheca |
公式URL | https://chromewebstore.google.com/detail/unclosed-tabs/pnndppofhelodlbmmdicmbhnppanheca |
説明 | Some pages you want to browse later?just close the browser with the pages open,this extension will save them for you. |
ファイルサイズ | 159 KB |
インストール数 | 37 |
現在のバージョン | 0.0.4 |
最終更新日 | 2017-09-25 |
公開日 | 2017-09-25 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | Michael Anx |
支払い方法 | free |
対応言語 | 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'" } |