Content Warning
This extension provides customizable content warnings
Content Warning란 무엇입니까?
Content Warning은(는) justinas.banys1에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension provides customizable content warnings"입니다.
확장 프로그램 스크린샷
Content Warning 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension provides content warnings for particular keywords while browsing on various websites. The content warnings are easily customizable. Users can add, remove, and disable different warnings according to their preferences and whatever they find convenient using a simple interface. In case a keyword is found on some website, a pop-up is thrown providing the user with two options: continue browsing or leaving the site.
확장 프로그램 기본 정보
이름 | Content Warning |
ID | fifecojajmdemfccknoappgllkcoihbc |
공식 URL | https://chromewebstore.google.com/detail/content-warning/fifecojajmdemfccknoappgllkcoihbc |
설명 | This extension provides customizable content warnings |
파일 크기 | 17.76 KB |
설치 횟수 | 12 |
현재 버전 | 1.4.1 |
최근 업데이트 | 2018-06-02 |
출시 날짜 | 2018-06-01 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | justinas.banys1 |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Content Warning", "description": "This extension provides customizable content warnings", "version": "1.4.1", "options_page": "options.html", "permissions": [ "storage" ], "browser_action": { "default_popup": "popup.html", "default_icon": "cw_icon.png" }, "icons": { "128": "cw_icon.png" }, "background": { "scripts": [ "js\/content.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "js\/content.js" ], "css": [ "css\/content.css" ] } ] } |