Netflix Wrapped
Netflix Wrapped - your 2020 watch history summarized
Netflix Wrappedとは何ですか?
Netflix WrappedはMaanav Gargによって開発されたChromeの拡張機能で、その主な機能は「Netflix Wrapped - your 2020 watch history summarized」です。
拡張機能のスクリーンショット
Netflix Wrapped拡張機能のCRXファイルをダウンロード
Netflix Wrapped拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Netflix Wrapped - your 2020 watch history summarized and displayed in a concise dashboard. Instructions: 1. Open up Netflix and log into your account 2. Head over to your viewing activity page via netflix.com/viewingactivity 3. Click on the Netflix Wrapped extension on your toolbar and simply click the WRAPPED button Now just give it a minute or so (depending on how much Netflix you watch) and your Netflix Wrapped dashboard will (should) open up. This extension is not created by or affiliated with Netflix in any way.
拡張機能の基本情報
名前 | Netflix Wrapped |
ID | febagoadhbiohapfajddknchglmidhfb |
公式URL | https://chromewebstore.google.com/detail/netflix-wrapped/febagoadhbiohapfajddknchglmidhfb |
説明 | Netflix Wrapped - your 2020 watch history summarized |
ファイルサイズ | 132 KB |
インストール数 | 390 |
現在のバージョン | 1.5 |
最終更新日 | 2021-01-20 |
公開日 | 2021-01-20 |
評価 | 5.00/5 合計 14 レビュー |
開発者 | Maanav Garg |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/Maanav-G/Netflix-Wrapped |
プライバシーポリシーページのURL | https://github.com/Maanav-G/Netflix-Wrapped/tree/main/privacy-policy |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Netflix Wrapped", "description": "Netflix Wrapped - your 2020 watch history summarized", "version": "1.5", "icons": { "16": "files\/icon16.png", "48": "files\/icon48.png", "128": "files\/icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.netflix.com\/viewingactivity" ], "js": [ "utils\/utils.js", "utils\/charts.js", "utils\/data.js", "utils\/loader.js" ], "css": [], "run_at": "document_start" } ], "background": { "scripts": [ "inject.js", "dashboard.html", "utils\/utils.js", "utils\/charts.js", "utils\/data.js", "utils\/loader.js" ], "persistent": true }, "browser_action": { "default_title": "Netflix Wrapped", "default_popup": "popup.html" }, "web_accessible_resources": [ "inject.js", "dashboard.html", "utils\/utils.js", "utils\/charts.js", "utils\/data.js", "utils\/loader.js" ], "permissions": [ "activeTab" ] } |