Upload to Imgur
When you right click an image, a context menu will appear allowing you to upload the image directly to imgur.
What is Upload to Imgur?
Upload to Imgur is a Chrome extension developed by b3zman41, and its main feature is "When you right click an image, a context menu will appear allowing you to upload the image directly to imgur.".
Extension Screenshots
Download Upload to Imgur Extension CRX File
Download Upload to Imgur extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
When you right click an image, a context menu will appear allowing you to upload the image directly to imgur.
Extension Basic Information
Name | |
ID | kedcacdiooafipfmpdgdjaaekkdnhibn |
Official URL | 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. |
File Size | 679 KB |
Installation Count | 857 |
Current Version | 2.2 |
Last Updated | 2015-02-27 |
Publish Date | 2015-02-27 |
Rating | 3.73/5 Total 11 Ratings |
Developer | b3zman41 |
Payment Type | free |
Supported Languages | 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" ] } ] } |