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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
معلومات أساسية عن التمديد
الاسم | 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" } } |