Web Stripper
Turn off CSS and JS on the fly!
什么是Web Stripper?
Web Stripper是由Andrey Shevyakov开发的Chrome扩展程序,该扩展的主要功能是“Turn off CSS and JS on the fly!”。
扩展截图
下载Web Stripper扩展crx文件
下载Web Stripper扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
                        "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.                     扩展基本信息
| 名称 |   |  
| 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\/*"
    ]
}  |  |