Pinterest Image Downloader

Adds download button to each Pinterest image

Qu'est-ce que Pinterest Image Downloader ?

Pinterest Image Downloader est une extension Chrome développée par Vanyo Vanev, et sa fonction principale est "Adds download button to each Pinterest image".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Pinterest Image Downloader

Téléchargez les fichiers d'extension Pinterest Image Downloader au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Pinterest Image Downloader Pinterest Image Downloader
ID elnfnoljjefjnldjoilgomncnccjbgaa
URL Officiel https://chrome.google.com/webstore/detail/pinterest-image-downloade/elnfnoljjefjnldjoilgomncnccjbgaa
Description Adds download button to each Pinterest image
Taille du Fichier 55.9 KB
Nombre d'Installations 8,000
Version Actuelle 1.3
Dernière Mise à Jour 2020-10-26
Date de Publication 2020-10-03
Évaluation 2.68/5 Total 19 Évaluations
Développeur Vanyo Vanev
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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
}