Spoiler Preventer
Avoid colliding with spoilers
Spoiler Preventer란 무엇입니까?
Spoiler Preventer은(는) Cycle & Carriage에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Avoid colliding with spoilers"입니다.
확장 프로그램 스크린샷
Spoiler Preventer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Introducing Spoiler Preventer, a browser extension that actively blocks out potential spoilers to your favourite television series or movie. Simply turn this on, and you will never encounter another spoiler accidentally again.
확장 프로그램 기본 정보
이름 | Spoiler Preventer |
ID | phncefdjfiecennngpkplhakjeneahai |
공식 URL | https://chromewebstore.google.com/detail/spoiler-preventer/phncefdjfiecennngpkplhakjeneahai |
설명 | Avoid colliding with spoilers |
파일 크기 | 3.51 MB |
설치 횟수 | 13 |
현재 버전 | 0.6 |
최근 업데이트 | 2019-07-06 |
출시 날짜 | 2019-07-05 |
평점 | 4.00/5 총 4 개의 평점 |
개발자 | Cycle & Carriage |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Spoiler Preventer", "short_name": "SpoilerPreventer", "description": "Avoid colliding with spoilers", "version": "0.6", "author": "Naveen: BBDO Singapore", "homepage_url": "https:\/\/www.cyclecarriage.com\/", "offline_enabled": true, "browser_action": { "default_icon": { "19": "images\/mz-logo-19x19.png", "38": "images\/mz-logo-38x38.png", "48": "images\/mz-logo-48x48.png", "128": "images\/mz-logo-128x128.png" }, "default_title": "Spoiler Preventer", "default_popup": "index.html" }, "icons": { "19": "images\/mz-logo-19x19.png", "38": "images\/mz-logo-38x38.png", "48": "images\/mz-logo-48x48.png", "128": "images\/mz-logo-128x128.png" }, "permissions": [ "activeTab", "background", "storage", "tabs" ], "content_scripts": [ { "run_at": "document_start", "matches": [ "*:\/\/*.google.com\/*", "*:\/\/*.facebook.com\/*", "*:\/\/*.twitter.com\/*", "*:\/\/*.youtube.com\/*" ], "css": [ "css\/blocker-style.css" ], "js": [ "js\/jquery-3.0.0.min.js", "js\/blocking.js" ] } ], "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'" } |