Pinterest Image Downloader

Adds download button to each Pinterest image

Τι είναι το Pinterest Image Downloader;

Το Pinterest Image Downloader είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Vanyo Vanev, και η κύρια λειτουργία του είναι "Adds download button to each Pinterest image".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Pinterest Image Downloader

Λήψη αρχείων επέκτασης Pinterest Image Downloader σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Pinterest Image Downloader Pinterest Image Downloader
ID elnfnoljjefjnldjoilgomncnccjbgaa
Επίσημο URL https://chrome.google.com/webstore/detail/pinterest-image-downloade/elnfnoljjefjnldjoilgomncnccjbgaa
Περιγραφή Adds download button to each Pinterest image
Μέγεθος Αρχείου 55.9 KB
Αριθμός Εγκαταστάσεων 8,000
Τρέχουσα Έκδοση 1.3
Τελευταία Ενημέρωση 2020-10-26
Ημερομηνία Δημοσίευσης 2020-10-03
Αξιολόγηση 2.68/5 Συνολικά 19 Αξιολογήσεις
Προγραμματιστής Vanyo Vanev
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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
}