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是由https://daltonmenezes.github.io開發的Chrome擴展程式,該擴展的主要功能是“An Extension to export your lists from Netflix to Clipboard area and share with your friends.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Netflix List Exporter擴展crx文件

下載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
官方網址 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"
}