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 |
| Eメール | [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\/*"
]
} | |