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"
            ]
        }
    ]
}