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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        [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
عنوان صفحة المساعدة 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"
}