Spoiler-free IMDb
Hide IMDb spoilers
Spoiler-free IMDb란 무엇입니까?
Spoiler-free IMDb은(는) Jonathan에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hide IMDb spoilers"입니다.
확장 프로그램 스크린샷
Spoiler-free IMDb 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Sick of having IMDb tell you exactly how many episodes an actor was in? If that weren't bad enough, IMDb likes to throw the top rated episode summaries in your face, when you go to a show's page. If you aren't caught up on a show, it is very easy to having something spoiled for you. Spoiler-free IMDb will make sure you don't see the episode count for anybody on the show, whether you're looking at a TV show page, or the actor's page. We also hide the top rated episode summaries completely. If you want to see spoilers on a specific page, just click on the icon in the URL bar, and click "Display spoilers for this page" and the page will refresh, and display all details, including any potential spoilers.
확장 프로그램 기본 정보
이름 | Spoiler-free IMDb |
ID | gfdelcngpnloeknplgbinlafdjffknni |
공식 URL | https://chromewebstore.google.com/detail/spoiler-free-imdb/gfdelcngpnloeknplgbinlafdjffknni |
설명 | Hide IMDb spoilers |
파일 크기 | 13.29 KB |
설치 횟수 | 47 |
현재 버전 | 1.0 |
최근 업데이트 | 2016-02-26 |
출시 날짜 | 2016-02-26 |
평점 | 5.00/5 총 3 개의 평점 |
개발자 | Jonathan |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Spoiler-free IMDb", "description": "Hide IMDb spoilers", "version": "1.0", "background": { "scripts": [ "background.js" ] }, "icons": { "16": "assets\/icon_16.png", "48": "assets\/icon_48.png", "128": "assets\/icon_128.png" }, "page_action": { "default_icon": { "16": "assets\/icon_16.png", "48": "assets\/icon_48.png" }, "default_title": "Spoiler-free IMDb", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/www.imdb.com\/*" ], "js": [ "remove-spoilers.js" ] } ], "permissions": [ "declarativeContent", "storage", "http:\/\/www.imdb.com\/*" ] } |