Dedoodler
This extension attempts to remove the Google Doodle and replace it with standard logos, or America doodles. Because 'Murica.
Was ist Dedoodler?
Dedoodler ist eine Chrome-Erweiterung, die von Rob's Stuff entwickelt wurde, und ihr Hauptmerkmal ist "This extension attempts to remove the Google Doodle and replace it with standard logos, or America doodles. Because 'Murica.".
Erweiterungsscreenshots
Dedoodler-Erweiterungs-CRX-Datei herunterladen
Laden Sie Dedoodler-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Grundlegende Informationen zur Erweiterung
Name | Dedoodler |
ID | floldgefcogjbipaffmcglgbkenfnkkk |
Offizielle URL | https://chromewebstore.google.com/detail/dedoodler/floldgefcogjbipaffmcglgbkenfnkkk |
Beschreibung | This extension attempts to remove the Google Doodle and replace it with standard logos, or America doodles. Because 'Murica. |
Dateigröße | 47.63 KB |
Installationsanzahl | 137 |
Aktuelle Version | 1.0 |
Letztes Update | 2017-09-26 |
Veröffentlichungsdatum | 2017-09-26 |
Bewertung | 3.67/5 Insgesamt 6 Bewertungen |
Entwickler | Rob's Stuff |
Zahlungsart | free |
Unterstützte Sprachen | 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" } } |