Dedoodler
This extension attempts to remove the Google Doodle and replace it with standard logos, or America doodles. Because 'Murica.
Dedoodlerคืออะไร?
Dedoodler เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Rob's Stuff และคุณลักษณะหลักของมันคือ "This extension attempts to remove the Google Doodle and replace it with standard logos, or America doodles. Because 'Murica."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Dedoodler
ดาวน์โหลดไฟล์ส่วนขยาย 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" } } |