Upload to Imgur

When you right click an image, a context menu will appear allowing you to upload the image directly to imgur.

Что такое Upload to Imgur?

Upload to Imgur - это расширение Chrome, разработанное b3zman41, и его основная функция - "When you right click an image, a context menu will appear allowing you to upload the image directly to imgur.".

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

screenshot

Скачать файл CRX расширения Upload to Imgur

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

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

                        When you right click an image, a context menu will appear allowing you to upload the image directly to imgur.                    

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

Название Upload to Imgur Upload to Imgur
ID kedcacdiooafipfmpdgdjaaekkdnhibn
Официальный URL https://chrome.google.com/webstore/detail/upload-to-imgur/kedcacdiooafipfmpdgdjaaekkdnhibn
Описание When you right click an image, a context menu will appear allowing you to upload the image directly to imgur.
Размер файла 679 KB
Количество установок 857
Текущая Версия 2.2
Последнее Обновление 2015-02-27
Дата публикации 2015-02-27
Рейтинг 3.73/5 Всего 11 оценок
Разработчик b3zman41
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Upload to Imgur",
    "version": "2.2",
    "minimum_chrome_version": "23",
    "icons": {
        "16": "imgur_16.png",
        "128": "imgur_128.png"
    },
    "permissions": [
        "contextMenus",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "main.js",
            "jquery.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [],
            "js": [
                "jquery.js",
                "content_script.js"
            ]
        }
    ]
}