Dedoodler

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

Apa itu Dedoodler?

Dedoodler adalah ekstensi Chrome yang dikembangkan oleh Rob's Stuff, dan fitur utamanya adalah "This extension attempts to remove the Google Doodle and replace it with standard logos, or America doodles. Because 'Murica.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Dedoodler

Unduh file ekstensi Dedoodler dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                                            

Informasi Dasar Ekstensi

Nama Dedoodler Dedoodler
ID floldgefcogjbipaffmcglgbkenfnkkk
URL Resmi https://chromewebstore.google.com/detail/dedoodler/floldgefcogjbipaffmcglgbkenfnkkk
Deskripsi This extension attempts to remove the Google Doodle and replace it with standard logos, or America doodles. Because 'Murica.
Ukuran File 47.63 KB
Jumlah Instalasi 137
Versi Saat Ini 1.0
Terakhir Diperbarui 2017-09-26
Tanggal Publikasi 2017-09-26
Penilaian 3.67/5 Total 6 Penilaian
Pengembang Rob's Stuff
Tipe Pembayaran free
Bahasa yang Didukung 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"
    }
}