Dedoodler

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

Dedoodler क्या है?

Dedoodler Rob's Stuff द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension attempts to remove the Google Doodle and replace it with standard logos, or America doodles. Because 'Murica."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Dedoodler एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                                            

एक्सटेंशन की मूल जानकारी

नाम Dedoodler Dedoodler
ID floldgefcogjbipaffmcglgbkenfnkkk
आधिकारिक URL https://chromewebstore.google.com/detail/dedoodler/floldgefcogjbipaffmcglgbkenfnkkk
विवरण This extension attempts to remove the Google Doodle and replace it with standard logos, or America doodles. Because 'Murica.
फ़ाइल का आकार 47.63 KB
स्थापना संख्या 137
वर्तमान संस्करण 1.0
अंतिम अपडेट 2017-09-26
प्रकाशन तिथि 2017-09-26
रेटिंग 3.67/5 कुल 6 रेटिंग्स
डेवलपर Rob's Stuff
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
    }
}