Discord Image Inspector
Hover over images on Discord to view them!
Cos'è Discord Image Inspector?
Discord Image Inspector è un'estensione di Chrome sviluppata da the bog, e la sua funzione principale è "Hover over images on Discord to view them!".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Discord Image Inspector
Scarica i file di estensione Discord Image Inspector 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
Hover your mouse over avatars and other icons to view a higher resolution version! Informazioni di Base sull'Estensione
| Nome | |
| ID | jgaifhlgicdgfecphpakomdmfbnphlac |
| URL Ufficiale | https://chrome.google.com/webstore/detail/discord-image-inspector/jgaifhlgicdgfecphpakomdmfbnphlac |
| Descrizione | Hover over images on Discord to view them! |
| Dimensione del File | 44.75 KB |
| Conteggio Installazioni | 194 |
| Versione Corrente | 1.12 |
| Ultimo Aggiornamento | 2019-12-03 |
| Data di Pubblicazione | 2019-12-03 |
| Valutazione | 3.50/5 Totale 10 Valutazioni |
| Sviluppatore | the bog |
| Tipo di Pagamento | free |
| Lingue Supportate | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Discord Image Inspector",
"version": "1.12",
"description": "Hover over images on Discord to view them!",
"permissions": [
"activeTab",
"storage"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"https:\/\/discordapp.com\/*",
"http:\/\/discordapp.com\/*"
],
"js": [
"core.js",
"js\/tippy.js"
],
"run_at": "document_end",
"all_frames": true
}
],
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images\/sawa_16.png",
"32": "images\/sawa_32.png",
"48": "images\/sawa_48.png",
"128": "images\/sawa_128.png"
}
},
"icons": {
"16": "images\/sawa_16.png",
"32": "images\/sawa_32.png",
"48": "images\/sawa_48.png",
"128": "images\/sawa_128.png"
},
"manifest_version": 2
} | |