bookmarks+emoji
Custom Emojis for Chrome Bookmarks.
什麼是bookmarks+emoji?
bookmarks+emoji是由iklimbov開發的Chrome擴展程式,該擴展的主要功能是“Custom Emojis for Chrome Bookmarks.”。
擴展截圖
下載bookmarks+emoji擴展crx文件
下載bookmarks+emoji擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
🔸 Personalized alternative to the traditional Chrome Bookmarks Bar 🔸 Set default icons to Emojis for more privacy 🔸 Switch between icons-only view and Bookmarks titles view 🔸 Use folder shortcuts for quicker access 🔸 Deleted a Bookmark by accident? Find it later in Recycling Bin 🔸 Clean up and archive old Bookmarks (unused for 90 days)
擴展基本資訊
名稱 | bookmarks+emoji |
ID | edhimhkligfccgpkiahdmioohofelpgm |
官方網址 | https://chromewebstore.google.com/detail/bookmarks+emoji/edhimhkligfccgpkiahdmioohofelpgm |
簡介 | Custom Emojis for Chrome Bookmarks. |
檔案大小 | 1.01 MB |
安裝次數 | 351 |
目前版本 | 1.33.0 |
更新時間 | 2022-06-08 |
上架時間 | 2020-09-25 |
評分 | 3.41/5 共 17 次評分 |
開發者 | iklimbov |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "bookmarks+emoji", "description": "Custom Emojis for Chrome Bookmarks.", "version": "1.33.0", "default_locale": "en", "background": { "scripts": [ "js\/bkmks_panel_background.js" ], "persistent": false }, "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'", "content_scripts": [ { "run_at": "document_idle", "matches": [ "*:\/\/*\/*", "file:\/\/\/" ], "js": [ "js\/bkmks_panel_content_script.js" ], "css": [ "css\/bkmks_panel_main.css" ], "match_about_blank": true } ], "web_accessible_resources": [ "bkmks_panel_popup.html", "bkmks_panel_inj.html" ], "browser_action": { "default_icon": "images\/icon_128.png" }, "icons": { "128": "images\/icon_128.png" }, "permissions": [ "tabs", "storage", "bookmarks", "chrome:\/\/favicon\/", "activeTab", "history", "webNavigation" ] } |