Spoiler-free IMDb
Hide IMDb spoilers
Spoiler-free IMDb là gì?
Spoiler-free IMDb là một tiện ích mở rộng Chrome được phát triển bởi Jonathan, và tính năng chính của nó là "Hide IMDb spoilers".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Spoiler-free IMDb
Tải xuống các tệp mở rộng Spoiler-free IMDb dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Spoiler-free IMDb |
ID | gfdelcngpnloeknplgbinlafdjffknni |
URL Chính Thức | https://chromewebstore.google.com/detail/spoiler-free-imdb/gfdelcngpnloeknplgbinlafdjffknni |
Mô tả | Hide IMDb spoilers |
Kích Thước Tệp | 13.29 KB |
Số Lần Cài Đặt | 47 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2016-02-26 |
Ngày Phát Hành | 2016-02-26 |
Đánh Giá | 5.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | Jonathan |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } |