Bug
Adds very realistic animated bugs (spiders and/or flies) to your chrome browser.
ما هو Bug؟
Bug هو إضافة Chrome تم تطويرها بواسطة bugextension، والميزة الرئيسية لها هي "Adds very realistic animated bugs (spiders and/or flies) to your chrome browser.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Bug
قم بتنزيل ملفات الامتداد Bug بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
A small extension which adds realistic animated bugs to your browser. Has modes for spiders and flies (or both). Option to only show the bugs on a percentage of pages viewed. معلومات أساسية عن التمديد
| الاسم | |
| ID | ekbjjckppofeioffpmilicifcmcfjpnh |
| عنوان URL الرسمي | https://chromewebstore.google.com/detail/bug/ekbjjckppofeioffpmilicifcmcfjpnh |
| الوصف | Adds very realistic animated bugs (spiders and/or flies) to your chrome browser. |
| حجم الملف | 62.49 KB |
| عدد التثبيتات | 162 |
| النسخة الحالية | 1.0 |
| آخر تحديث | 2018-11-01 |
| تاريخ النشر | 2018-10-25 |
| تقييم | 4.50/5 مجموع تقييمات 2 |
| المطور | bugextension |
| البريد الإلكتروني | [email protected] |
| نوع الدفع | free |
| موقع الإضافة | https://auz.github.io/Bug/ |
| اللغات المدعومة | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Bug",
"short_name": "Bug",
"version": "1.0",
"manifest_version": 2,
"description": "Adds very realistic animated bugs (spiders and\/or flies) to your chrome browser.",
"homepage_url": "https:\/\/auz.github.io\/Bug\/",
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"content_scripts": [
{
"run_at": "document_end",
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"bug.js"
]
}
],
"browser_action": {
"default_popup": "options.html"
},
"permissions": [
"storage"
],
"icons": {
"16": "bug-icon-16.png",
"48": "bug-icon-48.png",
"128": "bug-icon-128.png"
}
} | |