Web Stripper
Turn off CSS and JS on the fly!
Web Stripper क्या है?
Web Stripper Andrey Shevyakov द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Turn off CSS and JS on the fly!"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Web Stripper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
गोपनीयता नीति पृष्ठ URL | 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\/*" ] } |