Netflix Wrapped
Netflix Wrapped - your 2020 watch history summarized
Netflix Wrapped là gì?
Netflix Wrapped là một tiện ích mở rộng Chrome được phát triển bởi Maanav Garg, và tính năng chính của nó là "Netflix Wrapped - your 2020 watch history summarized".
Ả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 Wrapped
Tải xuống các tệp mở rộng Netflix Wrapped 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
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Netflix Wrapped |
ID | febagoadhbiohapfajddknchglmidhfb |
URL Chính Thức | https://chromewebstore.google.com/detail/netflix-wrapped/febagoadhbiohapfajddknchglmidhfb |
Mô tả | Netflix Wrapped - your 2020 watch history summarized |
Kích Thước Tệp | 132 KB |
Số Lần Cài Đặt | 390 |
Phiên Bản Hiện Tại | 1.5 |
Cập Nhật Lần Cuối | 2021-01-20 |
Ngày Phát Hành | 2021-01-20 |
Đánh Giá | 5.00/5 Tổng số 14 Đánh Giá |
Nhà Phát Triển | Maanav Garg |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/Maanav-G/Netflix-Wrapped |
URL Trang Chính Sách Bảo Mật | https://github.com/Maanav-G/Netflix-Wrapped/tree/main/privacy-policy |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |