Bookmark Favicon Changer

Change bookmark favicon

Bookmark Favicon Changer là gì?

Bookmark Favicon Changer là một tiện ích mở rộng Chrome được phát triển bởi sonthakit, và tính năng chính của nó là "Change bookmark favicon".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Bookmark Favicon Changer

Tải xuống các tệp mở rộng Bookmark Favicon Changer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        From the same developer of “bookmark favicon changer” for Firefox and Seamonkey.

Important! - You can change favicon of file URLs only if you enable the option "allow access to file URLs" at the browser extensions page (chrome://extensions) (see screenshot).

Description.
============

Change your bookmark favicon by open the extension’s options page. Right click at your bookmark; the popup menu with option "Change Favicon", "Reset Favicon", "Remove Favicon" and "Export Favicon" will appear.

You can use any image file or any image URL that browser support as a favicon.

Support every size of image file. There is no different in disk space requirement between big and small image size. Every image will be resized and changed to 16x16 pixels png files and saved.

After changing favicon, there is no need for that favicon file to exist again.

After changing favicon, you can reset it back or remove it and use the default one.

Support bookmark favicon export. No matter what it is the original favicon or changed favicon.

Tab icon changer - Bookmark favicon changer can assign you icon to tab icon for the whole domain or subdomain.

“Bookmark Favicon Changer” can do more things such as “simple bookmark management”, “create bookmark shortcut”, “auto hide bookmark bar name”, “import and export database” etc.


Limitation
==========

Unlike Firefox, Chrome do not support right click on bookmark bar. You need to open extension’s options page to change favicon.

Bookmarks that have the same URL will have the same favicon.

You can change favicon only on bookmark that has http, https or file protocol. This limitation comes from Chrome permission for security reason.

You need “Bookmark Favicon Changer” to be active to protect your custom favicon. You can’t change favicon and uninstall the extension; your custom favicon will turn back.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Bookmark Favicon Changer Bookmark Favicon Changer
ID acmfnomgphggonodopogfbmkneepfgnh
URL Chính Thức https://chromewebstore.google.com/detail/bookmark-favicon-changer/acmfnomgphggonodopogfbmkneepfgnh
Mô tả Change bookmark favicon
Kích Thước Tệp 153 KB
Số Lần Cài Đặt 44,653
Phiên Bản Hiện Tại 2.21
Cập Nhật Lần Cuối 2014-06-13
Ngày Phát Hành 2014-06-13
Đánh Giá 3.98/5 Tổng số 231 Đánh Giá
Nhà Phát Triển sonthakit
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Bookmark Favicon Changer",
    "description": "Change bookmark favicon",
    "version": "2.21",
    "minimum_chrome_version": "28",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "incognito": "spanning",
    "permissions": [
        "idle",
        "tabs",
        "",
        "chrome:\/\/favicon\/",
        "webRequest",
        "webRequestBlocking",
        "bookmarks",
        "notifications"
    ],
    "options_page": "options.xhtml",
    "page_action": {
        "default_icon": {
            "19": "icon19.png",
            "38": "icon38.png"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ]
}