Product Picker

Select products on www.redbubble.com and download as excel format.

Product Picker란 무엇입니까?

Product Picker은(는) danglanh.it에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Select products on www.redbubble.com and download as excel format."입니다.

확장 프로그램 스크린샷

screenshot

Product Picker 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Pick Mugs from https://www.redbubble.com and export to excel file in order to upload Amazon Products                    

확장 프로그램 기본 정보

이름 Product Picker Product Picker
ID anahhmibpekabiniclphcegdhnbdemnh
공식 URL https://chromewebstore.google.com/detail/product-picker/anahhmibpekabiniclphcegdhnbdemnh
설명 Select products on www.redbubble.com and download as excel format.
파일 크기 3.2 MB
설치 횟수 124
현재 버전 1.0.17
최근 업데이트 2019-10-29
출시 날짜 2019-10-29
평점 5.00/5 총 2 개의 평점
개발자 danglanh.it
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Product Picker",
    "description": "Select products on www.redbubble.com and download as excel format.",
    "version": "1.0.17",
    "manifest_version": 2,
    "icons": {
        "16": "icons\/icon_16.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "browser_action": {
        "default_title": "Product Picker",
        "default_popup": "popup\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.redbubble.com\/*"
            ],
            "css": [
                "css\/redbubble-style.css"
            ],
            "js": [
                "pp_redbubble_content.js"
            ],
            "all_frames": true,
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/www.all-overlove.com\/*"
            ],
            "css": [
                "css\/all-overlove-style.css"
            ],
            "js": [
                "pp_all_overlove_content.js"
            ],
            "all_frames": true,
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/www.spreadshirt.com\/*"
            ],
            "css": [
                "css\/spreadshirt-style.css"
            ],
            "js": [
                "pp_spreadshirt_content.js"
            ],
            "all_frames": true,
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/www.threadless.com\/*"
            ],
            "css": [
                "css\/threadless-style.css"
            ],
            "js": [
                "pp_threadless_content.js"
            ],
            "all_frames": true,
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/www.ccmug.com\/*"
            ],
            "css": [
                "css\/ccmug-style.css"
            ],
            "js": [
                "pp_ccmug_content.js"
            ],
            "all_frames": true,
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_ui": {
        "page": "options\/options.html",
        "chrome_style": true
    },
    "permissions": [
        "storage",
        "activeTab",
        "tabs",
        "downloads",
        "https:\/\/sellercentral.amazon.com\/"
    ]
}