Upload to Imgur

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

Was ist Upload to Imgur?

Upload to Imgur ist eine Chrome-Erweiterung, die von b3zman41 entwickelt wurde, und ihr Hauptmerkmal ist "When you right click an image, a context menu will appear allowing you to upload the image directly to imgur.".

Erweiterungsscreenshots

screenshot

Upload to Imgur-Erweiterungs-CRX-Datei herunterladen

Laden Sie Upload to Imgur-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Upload to Imgur Upload to Imgur
ID kedcacdiooafipfmpdgdjaaekkdnhibn
Offizielle URL https://chrome.google.com/webstore/detail/upload-to-imgur/kedcacdiooafipfmpdgdjaaekkdnhibn
Beschreibung When you right click an image, a context menu will appear allowing you to upload the image directly to imgur.
Dateigröße 679 KB
Installationsanzahl 857
Aktuelle Version 2.2
Letztes Update 2015-02-27
Veröffentlichungsdatum 2015-02-27
Bewertung 3.73/5 Insgesamt 11 Bewertungen
Entwickler b3zman41
Zahlungsart free
Unterstützte Sprachen 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"
            ]
        }
    ]
}