Upload to Imgur

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

Co to jest Upload to Imgur?

Upload to Imgur to rozszerzenie Chrome opracowane przez b3zman41, a jego główną funkcją jest „When you right click an image, a context menu will appear allowing you to upload the image directly to imgur.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Upload to Imgur

Pobierz pliki rozszerzeń Upload to Imgur 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

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

Podstawowe informacje o rozszerzeniu

Nazwa Upload to Imgur Upload to Imgur
ID kedcacdiooafipfmpdgdjaaekkdnhibn
Oficjalny URL https://chrome.google.com/webstore/detail/upload-to-imgur/kedcacdiooafipfmpdgdjaaekkdnhibn
Opis When you right click an image, a context menu will appear allowing you to upload the image directly to imgur.
Rozmiar pliku 679 KB
Liczba instalacji 857
Aktualna Wersja 2.2
Ostatnia Aktualizacja 2015-02-27
Data Publikacji 2015-02-27
Ocena 3.73/5 Łącznie 11 Oceny
Deweloper b3zman41
Typ Płatności free
Obsługiwane Języki 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"
            ]
        }
    ]
}