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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
도움말 페이지 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"
}