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是由b3zman41開發的Chrome擴展程式,該擴展的主要功能是“When you right click an image, a context menu will appear allowing you to upload the image directly to imgur.”。

擴展截圖

screenshot

下載Upload to Imgur擴展crx文件

下載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
官方網址 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"
            ]
        }
    ]
}