Deviantart.com Favicon Override

Overrides the default favicon for deviantart.com with the old, far superior favicon.

Hvad er Deviantart.com Favicon Override?

Deviantart.com Favicon Override er en Chrome-udvidelse udviklet af crimsonmango, og dens hovedfunktion er "Overrides the default favicon for deviantart.com with the old, far superior favicon.".

Download Deviantart.com Favicon Override-udvidelses-CRX-fil

Download Deviantart.com Favicon Override-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

                                            

Grundlæggende oplysninger om udvidelsen

Navn Deviantart.com Favicon Override Deviantart.com Favicon Override
ID nahcoedmigigijfonehkkbnbgoopgmnl
Officiel URL https://chromewebstore.google.com/detail/deviantartcom-favicon-ove/nahcoedmigigijfonehkkbnbgoopgmnl
Beskrivelse Overrides the default favicon for deviantart.com with the old, far superior favicon.
Filstørrelse 8.47 KB
Antal Installationer 49
Nuværende Version 1.0
Senest Opdateret 2016-09-07
Udgivelsesdato 2016-09-06
Bedømmelse 5.00/5 Samlet 2 Bedømmelser
Udvikler crimsonmango
Betalingsmetode free
Understøttede Sprog en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "browser_action": {
        "default_icon": "favicon.png"
    },
    "description": "Overrides the default favicon for deviantart.com with the old, far superior favicon.",
    "name": "Deviantart.com Favicon Override",
    "version": "1.0",
    "permissions": [
        "tabs",
        ""
    ],
    "icons": {
        "16": "favicon.png",
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.deviantart.com\/*"
            ],
            "js": [
                "injectCustomFavicon.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "favicon.png"
    ]
}