Bookmark Favicon Changer

Change bookmark favicon

Что такое Bookmark Favicon Changer?

Bookmark Favicon Changer - это расширение Chrome, разработанное sonthakit, и его основная функция - "Change bookmark favicon".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Bookmark Favicon Changer

Скачайте файлы расширений Bookmark Favicon Changer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Bookmark Favicon Changer Bookmark Favicon Changer
ID acmfnomgphggonodopogfbmkneepfgnh
Официальный URL https://chromewebstore.google.com/detail/bookmark-favicon-changer/acmfnomgphggonodopogfbmkneepfgnh
Описание Change bookmark favicon
Размер файла 153 KB
Количество установок 44,653
Текущая Версия 2.21
Последнее Обновление 2014-06-13
Дата публикации 2014-06-13
Рейтинг 3.98/5 Всего 231 оценок
Разработчик sonthakit
Тип оплаты free
Поддерживаемые языки 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
        }
    ]
}