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
}