Bookmark Favicon Changer

Change bookmark favicon

Qu'est-ce que Bookmark Favicon Changer ?

Bookmark Favicon Changer est une extension Chrome développée par sonthakit, et sa fonction principale est "Change bookmark favicon".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Bookmark Favicon Changer

Téléchargez les fichiers d'extension Bookmark Favicon Changer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Bookmark Favicon Changer Bookmark Favicon Changer
ID acmfnomgphggonodopogfbmkneepfgnh
URL Officiel https://chromewebstore.google.com/detail/bookmark-favicon-changer/acmfnomgphggonodopogfbmkneepfgnh
Description Change bookmark favicon
Taille du Fichier 153 KB
Nombre d'Installations 44,653
Version Actuelle 2.21
Dernière Mise à Jour 2014-06-13
Date de Publication 2014-06-13
Évaluation 3.98/5 Total 231 Évaluations
Développeur sonthakit
Type de Paiement free
Langues Prises en Charge 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
        }
    ]
}