Dedoodler

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

Vad är Dedoodler?

Dedoodler är en Chrome-tillägg utvecklad av Rob's Stuff, och dess huvudfunktion är "This extension attempts to remove the Google Doodle and replace it with standard logos, or America doodles. Because 'Murica.".

Tilläggsskärmbilder

screenshot

Ladda ner Dedoodler-förlängningens CRX-fil

Ladda ner Dedoodler-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                                            

Grundläggande Information om Tillägg

Namn Dedoodler Dedoodler
ID floldgefcogjbipaffmcglgbkenfnkkk
Officiell webbadress https://chromewebstore.google.com/detail/dedoodler/floldgefcogjbipaffmcglgbkenfnkkk
Beskrivning This extension attempts to remove the Google Doodle and replace it with standard logos, or America doodles. Because 'Murica.
Filstorlek 47.63 KB
Antal Installationer 137
Aktuell Version 1.0
Senast Uppdaterad 2017-09-26
Publiceringsdatum 2017-09-26
Betyg 3.67/5 Totalt 6 Betyg
Utvecklare Rob's Stuff
Betalningssätt free
Stödda Språk 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"
    }
}