Upload to Imgur
When you right click an image, a context menu will appear allowing you to upload the image directly to imgur.
Wat is Upload to Imgur?
Upload to Imgur is een Chrome-extensie ontwikkeld door b3zman41, en de belangrijkste functie is "When you right click an image, a context menu will appear allowing you to upload the image directly to imgur.".
Extensie Screenshots
Download het CRX-bestand van de extensie Upload to Imgur
Download Upload to Imgur-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
When you right click an image, a context menu will appear allowing you to upload the image directly to imgur.
Basisinformatie over de Extensie
Naam | |
ID | kedcacdiooafipfmpdgdjaaekkdnhibn |
Officiële URL | https://chrome.google.com/webstore/detail/upload-to-imgur/kedcacdiooafipfmpdgdjaaekkdnhibn |
Beschrijving | When you right click an image, a context menu will appear allowing you to upload the image directly to imgur. |
Bestandsgrootte | 679 KB |
Aantal Installaties | 857 |
Huidige Versie | 2.2 |
Laatst Bijgewerkt | 2015-02-27 |
Publicatiedatum | 2015-02-27 |
Beoordeling | 3.73/5 Totaal 11 Beoordelingen |
Ontwikkelaar | b3zman41 |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } ] } |