Bookmarker
Say goodbye to millions of open chrome windows that clutter your screen and slow your machine! A tab manager for the power user.
Bookmarkerとは何ですか?
Bookmarkerはbookmarker extensionによって開発されたChromeの拡張機能で、その主な機能は「Say goodbye to millions of open chrome windows that clutter your screen and slow your machine! A tab manager for the power user.」です。
拡張機能のスクリーンショット
Bookmarker拡張機能のCRXファイルをダウンロード
Bookmarker拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Say goodbye to millions of open chrome windows that clutter your screen and slow your machine! A tab manager for the power user. We're looking for feedback! Shoot us a response here! https://goo.gl/forms/AxniAdIRad9EZg2Y2
拡張機能の基本情報
名前 | |
ID | glhpfpaemdkplbllfmkbigklacjneoba |
公式URL | https://chrome.google.com/webstore/detail/bookmarker/glhpfpaemdkplbllfmkbigklacjneoba |
説明 | Say goodbye to millions of open chrome windows that clutter your screen and slow your machine! A tab manager for the power user. |
ファイルサイズ | 962 KB |
インストール数 | 36 |
現在のバージョン | 1.2.1 |
最終更新日 | 2019-02-24 |
公開日 | 2019-02-24 |
評価 | 3.50/5 合計 4 レビュー |
開発者 | bookmarker extension |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/nami634/Bookmarker |
ヘルプページのURL | https://github.com/nami634/Bookmarker/issues |
対応言語 | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Bookmarker", "short_name": "Bookmarker", "description": "Say goodbye to millions of open chrome windows that clutter your screen and slow your machine! A tab manager for the power user.", "version": "1.2.1", "manifest_version": 2, "default_locale": "en", "icons": { "16": "icons\/icon-16.png", "48": "icons\/icon-48.png", "128": "icons\/icon-128.png" }, "background": { "scripts": [ "scripts\/background.js" ], "persistent": false }, "browser_action": { "default_icon": { "19": "icons\/icon-19.png", "38": "icons\/icon-38.png" }, "default_title": "Bookmarker", "default_popup": "pages\/popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "scripts\/content.js" ], "run_at": "document_end" } ], "options_page": "pages\/options.html", "options_ui": { "page": "pages\/options.html", "chrome_style": true }, "permissions": [ "tabs", "bookmarks", "activeTab", "storage", "management", "chrome:\/\/favicon\/" ], "commands": { "_execute_browser_action": { "global": false, "suggested_key": [ { "default": "Ctrl+D", "windows": "Ctrl+D", "mac": "Command+D" } ] }, "delete_bookmark": { "suggested_key": { "default": "Ctrl+I", "mac": "Command+I" }, "description": "\u30d6\u30c3\u30af\u30de\u30fc\u30af\u306e\u524a\u9664" } } } |