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 |
官方網址 | 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 |
電子郵箱 | [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" ] } |