Netflix Watched List
Select and hide watched movies and shows on Netflix.
Netflix Watched List là gì?
Netflix Watched List là một tiện ích mở rộng Chrome được phát triển bởi Dariusz Kozlowski, và tính năng chính của nó là "Select and hide watched movies and shows on Netflix.".
Ả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 Netflix Watched List
Tải xuống các tệp mở rộng Netflix Watched List 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
The extension allows marking the viewed movies, shows, etc. and hiding them. Bellow the thumbnails the name of shows appeared with icons. The closed eye icon represents unseen show, open eye represents watched show. On top right corner of the page next to magnifying glass there is an eye icon that allows hide watched shows. Additionally on thumbnails i placed an informaton is it a movie (M) or series (S). You can turn off it by clicking on addon icon and checking “Type Off”. For more information visit http://netwatchedlist.com Please leave a review
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Netflix Watched List |
ID | kjccopogofedahfeghliooghigidhjek |
URL Chính Thức | https://chromewebstore.google.com/detail/netflix-watched-list/kjccopogofedahfeghliooghigidhjek |
Mô tả | Select and hide watched movies and shows on Netflix. |
Kích Thước Tệp | 86.64 KB |
Số Lần Cài Đặt | 167 |
Phiên Bản Hiện Tại | 0.4.2 |
Cập Nhật Lần Cuối | 2019-02-14 |
Ngày Phát Hành | 2019-02-14 |
Đánh Giá | 2.80/5 Tổng số 5 Đánh Giá |
Nhà Phát Triển | Dariusz Kozlowski |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://netwatchedlist.com/en/home/ |
URL Trang Trợ Giúp | http://netwatchedlist.com/en/troubleshooting/ |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Netflix Watched List", "short_name": "NetflixWatchedList", "author": "Dariusz Kozlowski", "description": "Select and hide watched movies and shows on Netflix.", "version": "0.4.2", "icons": { "16": "images\/16.png", "32": "images\/32.png", "48": "images\/48.png", "128": "images\/128.png" }, "web_accessible_resources": [ "images\/*" ], "browser_action": { "default_icon": { "16": "images\/16.png", "32": "images\/32.png" }, "default_title": "Netflix Watched List", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/*.netflix.com\/*" ], "js": [ "jquery.js", "watched.js" ], "css": [ "styles.css" ] } ], "permissions": [ "https:\/\/www.imdb.com\/", "https:\/\/www.omdbapi.com\/?i=", "storage", "activeTab" ], "background": { "scripts": [ "jquery.js", "background.js" ], "persistent": true } } |