Add Art
Replacing ads with art.
ما هو Add Art؟
Add Art هو إضافة Chrome تم تطويرها بواسطة Add-Art، والميزة الرئيسية لها هي "Replacing ads with art.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Add Art
قم بتنزيل ملفات الامتداد Add Art بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Replace web ads with visual essays by artists. Update 10/12/2016: Now you can disable add-art for specific sites!
معلومات أساسية عن التمديد
الاسم | |
ID | jplogjalofjlkendelkacpekloflkfeg |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/add-art/jplogjalofjlkendelkacpekloflkfeg |
الوصف | Replacing ads with art. |
حجم الملف | 439 KB |
عدد التثبيتات | 329 |
النسخة الحالية | 2.4.3 |
آخر تحديث | 2018-05-18 |
تاريخ النشر | 2018-05-18 |
تقييم | 3.42/5 مجموع تقييمات 12 |
المطور | Add-Art |
نوع الدفع | free |
موقع الإضافة | http://add-art.org |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Add Art", "description": "Replacing ads with art.", "author": "@owise1,Corey Tegeler", "version": "2.4.3", "homepage_url": "http:\/\/add-art.org\/", "icons": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "64": "images\/icon-64.png" }, "browser_action": { "default_icon": "images\/icon-64.png", "default_popup": "interface.html", "default_title": "Add Art!" }, "permissions": [ "storage", "tabs", "unlimitedStorage", "webNavigation", "notifications", "webRequest", "http:\/\/*\/*", "https:\/\/*\/*" ], "web_accessible_resources": [ "images\/*" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/lib\/jquery-3.2.1.min.js", "js\/lib\/q.js", "js\/lib\/ramda.min.js", "js\/artAdder.js", "js\/document_end.js" ], "run_at": "document_end", "all_frames": true } ], "background": { "page": "background.html" } } |