Dedoodler

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

Dedoodler là gì?

Dedoodler là một tiện ích mở rộng Chrome được phát triển bởi Rob's Stuff, và tính năng chính của nó là "This extension attempts to remove the Google Doodle and replace it with standard logos, or America doodles. Because 'Murica.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Dedoodler

Tải xuống các tệp mở rộng Dedoodler dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                                            

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Dedoodler Dedoodler
ID floldgefcogjbipaffmcglgbkenfnkkk
URL Chính Thức https://chromewebstore.google.com/detail/dedoodler/floldgefcogjbipaffmcglgbkenfnkkk
Mô tả This extension attempts to remove the Google Doodle and replace it with standard logos, or America doodles. Because 'Murica.
Kích Thước Tệp 47.63 KB
Số Lần Cài Đặt 137
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2017-09-26
Ngày Phát Hành 2017-09-26
Đánh Giá 3.67/5 Tổng số 6 Đánh Giá
Nhà Phát Triển Rob's Stuff
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}