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" } } |