Dedoodler

This extension attempts to remove the Google Doodle and replace it with standard logos, or America doodles. Because 'Murica.

Cos'è Dedoodler?

Dedoodler è un'estensione di Chrome sviluppata da Rob's Stuff, e la sua funzione principale è "This extension attempts to remove the Google Doodle and replace it with standard logos, or America doodles. Because 'Murica.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Dedoodler

Scarica i file di estensione Dedoodler in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                                            

Informazioni di Base sull'Estensione

Nome Dedoodler Dedoodler
ID floldgefcogjbipaffmcglgbkenfnkkk
URL Ufficiale https://chromewebstore.google.com/detail/dedoodler/floldgefcogjbipaffmcglgbkenfnkkk
Descrizione This extension attempts to remove the Google Doodle and replace it with standard logos, or America doodles. Because 'Murica.
Dimensione del File 47.63 KB
Conteggio Installazioni 137
Versione Corrente 1.0
Ultimo Aggiornamento 2017-09-26
Data di Pubblicazione 2017-09-26
Valutazione 3.67/5 Totale 6 Valutazioni
Sviluppatore Rob's Stuff
Tipo di Pagamento free
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Dedoodler",
    "description": "This extension attempts to remove the Google Doodle and replace it with standard logos, or America doodles. Because 'Murica.",
    "version": "1.0",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.google.com\/*",
                "https:\/\/*.google.com\/*"
            ],
            "match_about_blank": true,
            "all_frames": false,
            "css": [
                "dedoodler-start.css"
            ],
            "js": [
                "jquery.js",
                "dedoodler-start.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "http:\/\/*.google.com\/*",
                "https:\/\/*.google.com\/*"
            ],
            "match_about_blank": true,
            "all_frames": false,
            "css": [
                "dedoodler-idle.css"
            ],
            "js": [
                "jquery.js",
                "dedoodler-idle.js"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "http:\/\/*.google.com\/*",
                "https:\/\/*.google.com\/*"
            ],
            "match_about_blank": true,
            "all_frames": false,
            "css": [
                "dedoodler-end.css"
            ],
            "js": [
                "jquery.js",
                "dedoodler-end.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "128": "icon.png",
        "48": "icon48.png",
        "16": "icon16.png"
    },
    "browser_action": {
        "default_icon": "icon.png"
    }
}