disable-HTML
Provides switches to enable and disable CSS, Javascript, Images, Cookies and Popups.
disable-HTML란 무엇입니까?
disable-HTML은(는) Daniel Lucks에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Provides switches to enable and disable CSS, Javascript, Images, Cookies and Popups."입니다.
확장 프로그램 스크린샷
disable-HTML 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extensions provides a control panel to disable and enable browser settings like CSS, Javascript, Images, Cookies and Popups. Just click the icon and the control panel will show up. You will see simple on/off switches to turn on and turn off the settings. So you can easily check how your website works without Javascript or without any images loaded. You also can check your websites behavior, if a user has blocked your cookies or popups. You want to see your website without any CSS applied to it? No problem, just disable CSS in the control panel.
확장 프로그램 기본 정보
이름 | disable-HTML |
ID | lfhjgihpknekohffabeddfkmoiklonhm |
공식 URL | https://chromewebstore.google.com/detail/disable-html/lfhjgihpknekohffabeddfkmoiklonhm |
설명 | Provides switches to enable and disable CSS, Javascript, Images, Cookies and Popups. |
파일 크기 | 21.64 KB |
설치 횟수 | 28,523 |
현재 버전 | 0.1.0 |
최근 업데이트 | 2013-12-30 |
출시 날짜 | 2013-12-30 |
평점 | 4.45/5 총 47 개의 평점 |
개발자 | Daniel Lucks |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "disable-HTML", "description": "Provides switches to enable and disable CSS, Javascript, Images, Cookies and Popups.", "version": "0.1.0", "permissions": [ "tabs", "contentSettings", "storage", "*:\/\/*\/*" ], "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "browser_action": { "default_icon": "images\/icon-24-browser.png", "default_popup": "popup\/index.html" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ], "run_at": "document_start" } ], "background": { "scripts": [ "background.js" ] }, "icons": { "16": "images\/icon-16.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" } } |