Image Uploader
Easily upload images on the web to clould storage using the Kloudless API
Image Uploader क्या है?
Image Uploader Matt द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Easily upload images on the web to clould storage using the Kloudless API"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Image Uploader एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
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" } |