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によって開発されたChromeの拡張機能で、その主な機能は「This extension attempts to remove the Google Doodle and replace it with standard logos, or America doodles. Because 'Murica.」です。
拡張機能のスクリーンショット
Dedoodler拡張機能のCRXファイルをダウンロード
Dedoodler拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
拡張機能の基本情報
名前 | 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" } } |