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 |
公式URL | 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 } } |