Netflix Watch List Manager

A Chrome extension for exporting and importing watch lists from Netflix

Netflix Watch List Managerคืออะไร?

Netflix Watch List Manager เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Daedalus Labs และคุณลักษณะหลักของมันคือ "A Chrome extension for exporting and importing watch lists from Netflix"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Netflix Watch List Manager

ดาวน์โหลดไฟล์ส่วนขยาย Netflix Watch List Manager ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Export and import watch lists to local JSON files from Netflix directly. Send your exported lists to friends and family for sharing or use them as backup.

[Quick Start]
Exporting -- Visit the "My List" page directly from https://www.netflix.com/browse/my-list, or navigate to the page from the "My List" tab within Netflix. Click the "Export" button to export your list to a JSON file.

Note: If you have a large playlist and do not see all your videos listed, ensure that all items are loaded prior to exporting. This can be achieved by scrolling to the bottom of the page until Netflix has loaded the data for your list.

Importing -- From the "My List" page, click on the "Import" button to select a watch list file to import.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Netflix Watch List Manager Netflix Watch List Manager
ID obgidigipndchfoaapdbldekffjpmmfa
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/netflix-watch-list-manage/obgidigipndchfoaapdbldekffjpmmfa
คำอธิบาย A Chrome extension for exporting and importing watch lists from Netflix
ขนาดไฟล์ 112 KB
จำนวนการติดตั้ง 3,924
เวอร์ชันปัจจุบัน 1.0.7
อัปเดตครั้งล่าสุด 2022-10-04
วันที่เผยแพร่ 2020-12-03
คะแนน 4.54/5 รวมทั้งหมด 26 คะแนน
ผู้พัฒนา Daedalus Labs
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Netflix Watch List Manager",
    "description": "A Chrome extension for exporting and importing watch lists from Netflix",
    "version": "1.0.7",
    "action": {
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.netflix.com\/*"
            ],
            "js": [
                "js\/vendor.js",
                "js\/content_script.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "js\/script.js"
            ],
            "matches": [
                "https:\/\/www.netflix.com\/*"
            ]
        }
    ],
    "permissions": [
        "tabs"
    ],
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    }
}