Upload to Imgur
When you right click an image, a context menu will appear allowing you to upload the image directly to imgur.
Hvad er Upload to Imgur?
Upload to Imgur er en Chrome-udvidelse udviklet af b3zman41, og dens hovedfunktion er "When you right click an image, a context menu will appear allowing you to upload the image directly to imgur.".
Udvidelsesskærmbilleder
Download Upload to Imgur-udvidelses-CRX-fil
Download Upload to Imgur-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
When you right click an image, a context menu will appear allowing you to upload the image directly to imgur.
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | kedcacdiooafipfmpdgdjaaekkdnhibn |
Officiel URL | https://chrome.google.com/webstore/detail/upload-to-imgur/kedcacdiooafipfmpdgdjaaekkdnhibn |
Beskrivelse | When you right click an image, a context menu will appear allowing you to upload the image directly to imgur. |
Filstørrelse | 679 KB |
Antal Installationer | 857 |
Nuværende Version | 2.2 |
Senest Opdateret | 2015-02-27 |
Udgivelsesdato | 2015-02-27 |
Bedømmelse | 3.73/5 Samlet 11 Bedømmelser |
Udvikler | b3zman41 |
Betalingsmetode | free |
Understøttede Sprog | 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" ] } ] } |