Netflix Watched List
Select and hide watched movies and shows on Netflix.
什麼是Netflix Watched List?
Netflix Watched List是由Dariusz Kozlowski開發的Chrome擴展程式,該擴展的主要功能是“Select and hide watched movies and shows on Netflix.”。
擴展截圖
下載Netflix Watched List擴展crx文件
下載Netflix Watched List擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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
擴展基本資訊
名稱 | Netflix Watched List |
ID | kjccopogofedahfeghliooghigidhjek |
官方網址 | https://chromewebstore.google.com/detail/netflix-watched-list/kjccopogofedahfeghliooghigidhjek |
簡介 | Select and hide watched movies and shows on Netflix. |
檔案大小 | 86.64 KB |
安裝次數 | 167 |
目前版本 | 0.4.2 |
更新時間 | 2019-02-14 |
上架時間 | 2019-02-14 |
評分 | 2.80/5 共 5 次評分 |
開發者 | Dariusz Kozlowski |
付費類型 | free |
擴展官網 | http://netwatchedlist.com/en/home/ |
說明頁面URL | http://netwatchedlist.com/en/troubleshooting/ |
支援的語言 | 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 } } |