Bookmark Favicon Changer

Change bookmark favicon

Hvad er Bookmark Favicon Changer?

Bookmark Favicon Changer er en Chrome-udvidelse udviklet af sonthakit, og dens hovedfunktion er "Change bookmark favicon".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot
screenshot
screenshot

Download Bookmark Favicon Changer-udvidelses-CRX-fil

Download Bookmark Favicon Changer-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Bookmark Favicon Changer Bookmark Favicon Changer
ID acmfnomgphggonodopogfbmkneepfgnh
Officiel URL https://chromewebstore.google.com/detail/bookmark-favicon-changer/acmfnomgphggonodopogfbmkneepfgnh
Beskrivelse Change bookmark favicon
Filstørrelse 153 KB
Antal Installationer 44,653
Nuværende Version 2.21
Senest Opdateret 2014-06-13
Udgivelsesdato 2014-06-13
Bedømmelse 3.98/5 Samlet 231 Bedømmelser
Udvikler sonthakit
Betalingsmetode free
Understøttede Sprog 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
        }
    ]
}