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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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\/*" ] } |