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文件

下載Product Picker擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

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

擴展基本資訊

名稱 Product Picker Product Picker
ID anahhmibpekabiniclphcegdhnbdemnh
官方網址 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\/"
    ]
}