Pinterest Save - Pro

Easily save pictures on the page to Pinterest, you can save all pictures with one click

什麼是Pinterest Save - Pro?

Pinterest Save - Pro是由aituxiu開發的Chrome擴展程式,該擴展的主要功能是“Easily save pictures on the page to Pinterest, you can save all pictures with one click”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

下載Pinterest Save - Pro擴展crx文件

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

擴展使用說明

                        When saving to Pinterest, you can choose to save it immediately, or add it to the pin-queue. Adding to the pin-queue will save one image every minute, which can avoid being penalized by Pinterest for frequent saves. Unfinished collections will automatically continue after the browser restarts.                    

擴展基本資訊

名稱 Pinterest Save - Pro Pinterest Save - Pro
ID eehllckaggechnoimeokmdgmljlmhkma
官方網址 https://chromewebstore.google.com/detail/pinterest-save-pro/eehllckaggechnoimeokmdgmljlmhkma
簡介 Easily save pictures on the page to Pinterest, you can save all pictures with one click
檔案大小 669 KB
安裝次數 4,402
目前版本 1.1.3
更新時間 2023-03-23
上架時間 2022-08-22
評分 3.57/5 共 7 次評分
開發者 aituxiu
付費類型 free
支援的語言 en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_default_title__",
    "default_locale": "en",
    "version": "1.1.3",
    "description": "__MSG_description__",
    "background": {
        "service_worker": ".\/background.js"
    },
    "manifest_version": 3,
    "action": {
        "default_popup": "popup\/popup.html",
        "default_icon": "assets\/logo\/logo_x48.png"
    },
    "icons": {
        "16": "assets\/logo\/logo_x16.png",
        "48": "assets\/logo\/logo_x48.png",
        "128": "assets\/logo\/logo_x128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "content\/content.css"
            ],
            "js": [
                "assets\/gtag.js",
                "content\/content.js"
            ]
        },
        {
            "matches": [
                "*:\/\/www.pinterest.com\/*"
            ],
            "css": [
                "content\/pinterest.css"
            ],
            "js": [
                "content\/pinterest.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset_1",
                "enabled": true,
                "path": "rules.json"
            }
        ]
    },
    "permissions": [
        "storage",
        "declarativeNetRequest",
        "downloads",
        "cookies",
        "tabs",
        "contextMenus"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "save\/save.html"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        },
        {
            "resources": [
                "assets\/injectscript.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ]
}