Netflix List Exporter

An Extension to export your lists from Netflix to Clipboard area and share with your friends.

Netflix List Exporterคืออะไร?

Netflix List Exporter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://daltonmenezes.github.io และคุณลักษณะหลักของมันคือ "An Extension to export your lists from Netflix to Clipboard area and share with your friends."

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        [How to use]
At netflix.com/browse/my-list page, you will see three new buttons to handle the list you want to export from Netflix. Choose one and wait for the message stating that copy to the clipboard is done. Then press CTRL + V or COMMAND + V  to paste the list wherever you want.

[Support me on this and other projects]
- Patreon: www.patreon.com/daltonmenezes                    

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

ชื่อ Netflix List Exporter Netflix List Exporter
ID mkhmjimpmgfjejbemjbimepeifijlagc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/netflix-list-exporter/mkhmjimpmgfjejbemjbimepeifijlagc
คำอธิบาย An Extension to export your lists from Netflix to Clipboard area and share with your friends.
ขนาดไฟล์ 27.07 KB
จำนวนการติดตั้ง 1,248
เวอร์ชันปัจจุบัน 2.2.3
อัปเดตครั้งล่าสุด 2022-08-07
วันที่เผยแพร่ 2020-05-09
คะแนน 4.00/5 รวมทั้งหมด 13 คะแนน
ผู้พัฒนา https://daltonmenezes.github.io
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/daltonmenezes/netflix-list-exporter
URL หน้าช่วยเหลือ https://github.com/daltonmenezes/netflix-list-exporter/issues
ภาษาที่รองรับ en,pt-BR
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Netflix List Exporter",
    "description": "__MSG_extensionDescription__",
    "version": "2.2.3",
    "homepage_url": "https:\/\/github.com\/daltonmenezes\/netflix-list-exporter",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.netflix.com\/*"
            ],
            "run_at": "document_end",
            "css": [
                "css\/button.css",
                "css\/popup.css"
            ],
            "js": [
                "content_scripts\/inject-script.js",
                "content_scripts\/creators\/my-list-creator.js",
                "content_scripts\/creators\/thumbs-list-creator.js",
                "content_scripts\/list-handler.js",
                "content_scripts\/ui\/button-render.js",
                "content_scripts\/ui\/buttons\/my-list.js",
                "content_scripts\/ui\/buttons\/thumbs-up-list.js",
                "content_scripts\/ui\/buttons\/thumbs-down-list.js",
                "content_scripts\/ui\/popup-render.js",
                "content_scripts\/events\/copying.js",
                "content_scripts\/events\/scroll.js",
                "content_scripts\/events\/click.js",
                "content_scripts\/events\/popup.js",
                "content_scripts\/write-to-clipboard.js",
                "content_scripts\/events\/clipboard.js",
                "content_scripts\/observer.js"
            ]
        }
    ],
    "page_action": {
        "default_icon": {
            "48": "icons\/48.png",
            "96": "icons\/96.png"
        }
    },
    "icons": {
        "48": "icons\/48.png",
        "96": "icons\/96.png"
    },
    "permissions": [
        "*:\/\/*.netflix.com\/*",
        "clipboardWrite"
    ],
    "default_locale": "en"
}