Image Uploader

Easily upload images on the web to clould storage using the Kloudless API

Image Uploaderคืออะไร?

Image Uploader เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Matt และคุณลักษณะหลักของมันคือ "Easily upload images on the web to clould storage using the Kloudless API"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Image Uploader

ดาวน์โหลดไฟล์ส่วนขยาย Image Uploader ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Image Uploader provides the ability to easily upload images you find on the web to your personal cloud storage via a right-click context menu. Simply log into one (or many) cloud storage accounts via the options page then right click on any image and select "Save to Cloud." The image will automatically be uploaded to any enabled cloud storage account.

The extension will automatically create a "photo_save" folder in the root directory of your cloud storage account and save all images to that directory.

This extension requires the ability to access and read all http and https websites in order to enable the right-click upload feature. The extension does not do anything else with this permission and the code is available for inspection and forkage on github.

This extension has been tested with Dropbox and Box.net accounts.

Image uploading is provided via the Kloudless API.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Image Uploader Image Uploader
ID dbkahggfkedkmjdijpffegkbikbigpfk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/image-uploader/dbkahggfkedkmjdijpffegkbikbigpfk
คำอธิบาย Easily upload images on the web to clould storage using the Kloudless API
ขนาดไฟล์ 489 KB
จำนวนการติดตั้ง 1,089
เวอร์ชันปัจจุบัน 1.0.1
อัปเดตครั้งล่าสุด 2014-05-28
วันที่เผยแพร่ 2014-05-27
คะแนน 4.00/5 รวมทั้งหมด 7 คะแนน
ผู้พัฒนา Matt
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/emgeee/image-uploader
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Image Uploader",
    "version": "1.0.1",
    "description": "Easily upload images on the web to clould storage using the Kloudless API",
    "homepage_url": "https:\/\/github.com\/emgeee\/image-uploader",
    "background": {
        "scripts": [
            "js\/background.js",
            "lib\/underscore-min.js"
        ]
    },
    "permissions": [
        "storage",
        "contextMenus",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "web_accessible_resources": [
        "img\/*.png"
    ],
    "minimum_chrome_version": "6.0.0.0",
    "icons": {
        "16": "img\/icon-16x16.png",
        "48": "img\/icon-48x48.png",
        "128": "img\/icon-128x128.png"
    },
    "options_page": "options.html"
}