Upload to Imgur

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

Qu'est-ce que Upload to Imgur ?

Upload to Imgur est une extension Chrome développée par b3zman41, et sa fonction principale est "When you right click an image, a context menu will appear allowing you to upload the image directly to imgur.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Upload to Imgur

Téléchargez les fichiers d'extension Upload to Imgur au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Upload to Imgur Upload to Imgur
ID kedcacdiooafipfmpdgdjaaekkdnhibn
URL Officiel https://chrome.google.com/webstore/detail/upload-to-imgur/kedcacdiooafipfmpdgdjaaekkdnhibn
Description When you right click an image, a context menu will appear allowing you to upload the image directly to imgur.
Taille du Fichier 679 KB
Nombre d'Installations 857
Version Actuelle 2.2
Dernière Mise à Jour 2015-02-27
Date de Publication 2015-02-27
Évaluation 3.73/5 Total 11 Évaluations
Développeur b3zman41
Type de Paiement free
Langues Prises en Charge 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"
            ]
        }
    ]
}