Bookmark Favicon Changer

Change bookmark favicon

O que é Bookmark Favicon Changer?

Bookmark Favicon Changer é uma extensão do Chrome desenvolvida por sonthakit, e sua principal característica é "Change bookmark favicon".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Bookmark Favicon Changer

Baixe arquivos de extensão Bookmark Favicon Changer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Bookmark Favicon Changer Bookmark Favicon Changer
ID acmfnomgphggonodopogfbmkneepfgnh
URL Oficial https://chromewebstore.google.com/detail/bookmark-favicon-changer/acmfnomgphggonodopogfbmkneepfgnh
Descrição Change bookmark favicon
Tamanho do Arquivo 153 KB
Contagem de Instalações 44,653
Versão Atual 2.21
Última Atualização 2014-06-13
Data de Publicação 2014-06-13
Classificação 3.98/5 Total de 231 Avaliações
Desenvolvedor sonthakit
Tipo de Pagamento free
Idiomas Suportados 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
        }
    ]
}