Upload to Imgur
When you right click an image, a context menu will appear allowing you to upload the image directly to imgur.
Cos'è Upload to Imgur?
Upload to Imgur è un'estensione di Chrome sviluppata da b3zman41, e la sua funzione principale è "When you right click an image, a context menu will appear allowing you to upload the image directly to imgur.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Upload to Imgur
Scarica i file di estensione Upload to Imgur in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
When you right click an image, a context menu will appear allowing you to upload the image directly to imgur. Informazioni di Base sull'Estensione
| Nome | |
| ID | kedcacdiooafipfmpdgdjaaekkdnhibn |
| URL Ufficiale | https://chrome.google.com/webstore/detail/upload-to-imgur/kedcacdiooafipfmpdgdjaaekkdnhibn |
| Descrizione | When you right click an image, a context menu will appear allowing you to upload the image directly to imgur. |
| Dimensione del File | 679 KB |
| Conteggio Installazioni | 857 |
| Versione Corrente | 2.2 |
| Ultimo Aggiornamento | 2015-02-27 |
| Data di Pubblicazione | 2015-02-27 |
| Valutazione | 3.73/5 Totale 11 Valutazioni |
| Sviluppatore | b3zman41 |
| Tipo di Pagamento | free |
| Lingue Supportate | 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"
]
}
]
} | |