9gag Downloader

Extension to assist in sharing memes through the best humorous website 9GAG

Что такое 9gag Downloader?

9gag Downloader - это расширение Chrome, разработанное Ricardo Carvalho, и его основная функция - "Extension to assist in sharing memes through the best humorous website 9GAG".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения 9gag Downloader

Скачайте файлы расширений 9gag Downloader в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Extension to help you share memes through the best 9GAG humor site. It has a simple button to download the viewed video or image and then share smiles.                    

Основная информация о расширении

Название 9gag Downloader 9gag Downloader
ID cipeepjilkbilfmpjalegdlgmgoimjii
Официальный URL https://chromewebstore.google.com/detail/9gag-downloader/cipeepjilkbilfmpjalegdlgmgoimjii
Описание Extension to assist in sharing memes through the best humorous website 9GAG
Размер файла 276 KB
Количество установок 184
Текущая Версия 1.1
Последнее Обновление 2022-01-15
Дата публикации 2019-09-11
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Ricardo Carvalho
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения http://galdar.com.br/
URL страницы помощи https://github.com/Darciro/9gag-downloader
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "9gag Downloader",
    "version": "1.1",
    "description": "Extension to assist in sharing memes through the best humorous website 9GAG",
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage",
        "tabs",
        "https:\/\/9gag.com\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "assets\/images\/9gag-icon-16.png",
            "32": "assets\/images\/9gag-icon-32.png",
            "48": "assets\/images\/9gag-icon-48.png",
            "64": "assets\/images\/9gag-icon-64.png",
            "128": "assets\/images\/9gag-icon-128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/9gag.com\/*"
            ],
            "js": [
                "jquery-3.3.1.min.js",
                "download.js"
            ],
            "run_at": "document_end"
        }
    ],
    "manifest_version": 2
}