Web Stripper
Turn off CSS and JS on the fly!
ما هو Web Stripper؟
Web Stripper هو إضافة Chrome تم تطويرها بواسطة Andrey Shevyakov، والميزة الرئيسية لها هي "Turn off CSS and JS on the fly!".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Web Stripper
قم بتنزيل ملفات الامتداد Web Stripper بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
"Web Stripper" is a neat tiny Chrome extension that provides the web-development assistance functionality. Current features: * Disable CSS * Disable JS Feel free to leave the feedback suggesting the features to implement in the future versions.
معلومات أساسية عن التمديد
الاسم | Web Stripper |
ID | lodjfnlhdbgmkjeijpmcnpgaljbkmbcp |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/web-stripper/lodjfnlhdbgmkjeijpmcnpgaljbkmbcp |
الوصف | Turn off CSS and JS on the fly! |
حجم الملف | 137 KB |
عدد التثبيتات | 33 |
النسخة الحالية | 1.0 |
آخر تحديث | 2020-05-28 |
تاريخ النشر | 2020-05-27 |
المطور | Andrey Shevyakov |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
عنوان صفحة سياسة الخصوصية | http://zitri.tech/privacy/chrome |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Web Stripper", "short_name": "Web Stripper", "description": "Turn off CSS and JS on the fly!", "version": "1.0", "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "browser_action": { "default_popup": "html\/popup.html", "default_title": "CSS And JS Stripper" }, "permissions": [ "activeTab", "storage" ], "background": { "persistent": false, "page": "html\/background.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/*\/*" ], "js": [ "script\/loader.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ "src\/*", "img\/*", "font\/*" ] } |