Tiny Bookmarks
A popup that will display all your bookmarks (and let you filter them) so you can get rid of the top bar.
Tiny Bookmarksとは何ですか?
Tiny Bookmarksはschouffyによって開発されたChromeの拡張機能で、その主な機能は「A popup that will display all your bookmarks (and let you filter them) so you can get rid of the top bar.」です。
拡張機能のスクリーンショット
Tiny Bookmarks拡張機能のCRXファイルをダウンロード
Tiny Bookmarks拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Displays all your bookmarks in a treeview. Lets you hide the bookmarks bar so you have more vertical screen space for the websites. Features : - Search - Remove Icon by https://www.iconfinder.com/SPETS Source code https://github.com/schouffy/bookmarks-chrome-extension
拡張機能の基本情報
名前 | Tiny Bookmarks |
ID | iegcdellenlkefldcoligpmfnnejcekj |
公式URL | https://chromewebstore.google.com/detail/tiny-bookmarks/iegcdellenlkefldcoligpmfnnejcekj |
説明 | A popup that will display all your bookmarks (and let you filter them) so you can get rid of the top bar. |
ファイルサイズ | 191 KB |
インストール数 | 39 |
現在のバージョン | 0.3 |
最終更新日 | 2020-04-07 |
公開日 | 2020-04-07 |
評価 | 3.00/5 合計 2 レビュー |
開発者 | schouffy |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tiny Bookmarks", "version": "0.3", "description": "A popup that will display all your bookmarks (and let you filter them) so you can get rid of the top bar.", "permissions": [ "bookmarks", "tabs", "chrome:\/\/favicon\/" ], "browser_action": { "default_title": "Tiny Bookmarks", "default_popup": "index.html", "default_icon": { "16": "star_16.png", "32": "star_32.png", "48": "star_48.png", "128": "star_128.png" } }, "icons": { "16": "star_16.png", "32": "star_32.png", "48": "star_48.png", "128": "star_128.png" }, "commands": { "_execute_browser_action": { "suggested_key": { "windows": "Ctrl+Comma", "mac": "Command+Comma", "chromeos": "Ctrl+Comma", "linux": "Ctrl+Comma" } } }, "manifest_version": 2, "content_security_policy": "script-src 'self' 'sha256-GgRxrVOKNdB4LrRsVPDSbzvfdV4UqglmviH9GoBJ5jk='; object-src 'self'" } |