Upload to Imgur
When you right click an image, a context menu will appear allowing you to upload the image directly to imgur.
Vad är Upload to Imgur?
Upload to Imgur är en Chrome-tillägg utvecklad av b3zman41, och dess huvudfunktion är "When you right click an image, a context menu will appear allowing you to upload the image directly to imgur.".
Tilläggsskärmbilder
Ladda ner Upload to Imgur-förlängningens CRX-fil
Ladda ner Upload to Imgur-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
When you right click an image, a context menu will appear allowing you to upload the image directly to imgur.
Grundläggande Information om Tillägg
Namn | |
ID | kedcacdiooafipfmpdgdjaaekkdnhibn |
Officiell webbadress | https://chrome.google.com/webstore/detail/upload-to-imgur/kedcacdiooafipfmpdgdjaaekkdnhibn |
Beskrivning | When you right click an image, a context menu will appear allowing you to upload the image directly to imgur. |
Filstorlek | 679 KB |
Antal Installationer | 857 |
Aktuell Version | 2.2 |
Senast Uppdaterad | 2015-02-27 |
Publiceringsdatum | 2015-02-27 |
Betyg | 3.73/5 Totalt 11 Betyg |
Utvecklare | b3zman41 |
Betalningssätt | free |
Stödda Språk | 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" ] } ] } |