Discord Image Inspector
Hover over images on Discord to view them!
Co to jest Discord Image Inspector?
Discord Image Inspector to rozszerzenie Chrome opracowane przez the bog, a jego główną funkcją jest „Hover over images on Discord to view them!”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Discord Image Inspector
Pobierz pliki rozszerzeń Discord Image Inspector w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Hover your mouse over avatars and other icons to view a higher resolution version!
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | jgaifhlgicdgfecphpakomdmfbnphlac |
Oficjalny URL | https://chrome.google.com/webstore/detail/discord-image-inspector/jgaifhlgicdgfecphpakomdmfbnphlac |
Opis | Hover over images on Discord to view them! |
Rozmiar pliku | 44.75 KB |
Liczba instalacji | 194 |
Aktualna Wersja | 1.12 |
Ostatnia Aktualizacja | 2019-12-03 |
Data Publikacji | 2019-12-03 |
Ocena | 3.50/5 Łącznie 10 Oceny |
Deweloper | the bog |
Typ Płatności | free |
Obsługiwane Języki | 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 } |