Pinterest Image Downloader

Adds download button to each Pinterest image

Co to jest Pinterest Image Downloader?

Pinterest Image Downloader to rozszerzenie Chrome opracowane przez Vanyo Vanev, a jego główną funkcją jest „Adds download button to each Pinterest image”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Pinterest Image Downloader

Pobierz pliki rozszerzeń Pinterest Image Downloader w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Pinterest Image Downloader Pinterest Image Downloader
ID elnfnoljjefjnldjoilgomncnccjbgaa
Oficjalny URL https://chrome.google.com/webstore/detail/pinterest-image-downloade/elnfnoljjefjnldjoilgomncnccjbgaa
Opis Adds download button to each Pinterest image
Rozmiar pliku 55.9 KB
Liczba instalacji 8,000
Aktualna Wersja 1.3
Ostatnia Aktualizacja 2020-10-26
Data Publikacji 2020-10-03
Ocena 2.68/5 Łącznie 19 Oceny
Deweloper Vanyo Vanev
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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
}