Pinterest Image Downloader

Adds download button to each Pinterest image

Cos'è Pinterest Image Downloader?

Pinterest Image Downloader è un'estensione di Chrome sviluppata da Vanyo Vanev, e la sua funzione principale è "Adds download button to each Pinterest image".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Pinterest Image Downloader

Scarica i file di estensione Pinterest Image Downloader in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Pinterest Image Downloader Pinterest Image Downloader
ID elnfnoljjefjnldjoilgomncnccjbgaa
URL Ufficiale https://chrome.google.com/webstore/detail/pinterest-image-downloade/elnfnoljjefjnldjoilgomncnccjbgaa
Descrizione Adds download button to each Pinterest image
Dimensione del File 55.9 KB
Conteggio Installazioni 8,000
Versione Corrente 1.3
Ultimo Aggiornamento 2020-10-26
Data di Pubblicazione 2020-10-03
Valutazione 2.68/5 Totale 19 Valutazioni
Sviluppatore Vanyo Vanev
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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
}