Pinterest Image Downloader

Adds download button to each Pinterest image

Vad är Pinterest Image Downloader?

Pinterest Image Downloader är en Chrome-tillägg utvecklad av Vanyo Vanev, och dess huvudfunktion är "Adds download button to each Pinterest image".

Tilläggsskärmbilder

screenshot

Ladda ner Pinterest Image Downloader-förlängningens CRX-fil

Ladda ner Pinterest Image Downloader-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        This extension makes easy to download Pinterest images. 
The extenstion will look up for the highest available size of the image (the original size) and add a download button at the left top angle of each pin.                    

Grundläggande Information om Tillägg

Namn Pinterest Image Downloader Pinterest Image Downloader
ID elnfnoljjefjnldjoilgomncnccjbgaa
Officiell webbadress https://chrome.google.com/webstore/detail/pinterest-image-downloade/elnfnoljjefjnldjoilgomncnccjbgaa
Beskrivning Adds download button to each Pinterest image
Filstorlek 55.9 KB
Antal Installationer 8,000
Aktuell Version 1.3
Senast Uppdaterad 2020-10-26
Publiceringsdatum 2020-10-03
Betyg 2.68/5 Totalt 19 Betyg
Utvecklare Vanyo Vanev
E-post [email protected]
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Pinterest Image Downloader",
    "short_name": "Pin Downloader",
    "version": "1.3",
    "description": "Adds download button to each Pinterest image",
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage"
    ],
    "background": {
        "scripts": [
            "app.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_popup": "background.html"
    },
    "icons": {
        "16": "images\/16.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.pinterest.com\/*"
            ],
            "js": [
                "jquery-3.5.1.min.js",
                "downloader.js"
            ],
            "run_at": "document_end",
            "css": [
                "downloader.css"
            ]
        }
    ],
    "manifest_version": 2
}