Spoiler Blocker
Blocks spoilers on your Facebook and Twitter feed.
Spoiler Blocker란 무엇입니까?
Spoiler Blocker은(는) spoiler.blocker.dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Blocks spoilers on your Facebook and Twitter feed."입니다.
확장 프로그램 스크린샷
Spoiler Blocker 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Say goodbye to spoilers ruining your favourite TV show or movie. The Spoiler Blocker extension hides posts containing keywords for shows you're watching. Block 'em all * Define lists of keywords, and posts containing any of these keywords will be hidden * Choose whether you want to overlay posts with a white panel or remove them completely * Deactivate lists if already you've finished watching the latest episode Share with others * Visit http://spoilerblocker.herokuapp.com/ to share lists with others * Use download IDs from the website to efficiently get lists into your extension
확장 프로그램 기본 정보
이름 | |
ID | ehjbmpkpiidfmlcaialacajddfkpepdo |
공식 URL | https://chrome.google.com/webstore/detail/spoiler-blocker/ehjbmpkpiidfmlcaialacajddfkpepdo |
설명 | Blocks spoilers on your Facebook and Twitter feed. |
파일 크기 | 804 KB |
설치 횟수 | 33 |
현재 버전 | 0.2.3 |
최근 업데이트 | 2017-01-17 |
출시 날짜 | 2017-01-17 |
평점 | 1.00/5 총 1 개의 평점 |
개발자 | spoiler.blocker.dev |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://spoilerblocker.herokuapp.com/ |
도움말 페이지 URL | https://github.com/kabir-plod/spoiler-blocker |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Spoiler Blocker", "description": "Blocks spoilers on your Facebook and Twitter feed.", "version": "0.2.3", "browser_action": { "default_title": "Spoiler Blocker", "default_icon": { "16": "img\/icon16.png", "32": "img\/icon32.png" }, "default_popup": "panel.html" }, "options_ui": { "page": "options.html" }, "icons": { "16": "img\/icon16.png", "32": "img\/icon32.png", "64": "img\/icon64.png", "128": "img\/icon128.png" }, "permissions": [ "activeTab", "storage", "https:\/\/spoilerblocker.herokuapp.com\/downloadList\/*" ], "background": { "page": "bg.html" }, "content_scripts": [ { "matches": [ "*:\/\/*.facebook.com\/*", "*:\/\/facebook.com\/*" ], "js": [ "fb.js" ], "run_at": "document_start" }, { "matches": [ "*:\/\/*.twitter.com\/*", "*:\/\/twitter.com\/*" ], "js": [ "tw.js" ], "run_at": "document_start" } ] } |