IG+VSCO fullsize
Click extension icon to open current IG or VSCO image in the highest resolution possible
Hvad er IG+VSCO fullsize?
IG+VSCO fullsize er en Chrome-udvidelse udviklet af Ondkloss, og dens hovedfunktion er "Click extension icon to open current IG or VSCO image in the highest resolution possible".
Udvidelsesskærmbilleder
Download IG+VSCO fullsize-udvidelses-CRX-fil
Download IG+VSCO fullsize-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
Works for: * IG image and profile image * VSCO image and profile image * TikTok image and profile image Open source: https://github.com/Ondkloss/ig-vsco-fullsize
Grundlæggende oplysninger om udvidelsen
Navn | IG+VSCO fullsize |
ID | ngdfnokoifnihnknoibnbhfhnkmlfocb |
Officiel URL | https://chromewebstore.google.com/detail/ig+vsco-fullsize/ngdfnokoifnihnknoibnbhfhnkmlfocb |
Beskrivelse | Click extension icon to open current IG or VSCO image in the highest resolution possible |
Filstørrelse | 14.11 KB |
Antal Installationer | 1,878 |
Nuværende Version | 1.3.3 |
Senest Opdateret | 2020-11-19 |
Udgivelsesdato | 2020-06-22 |
Bedømmelse | 3.30/5 Samlet 10 Bedømmelser |
Udvikler | Ondkloss |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/Ondkloss/ig-vsco-fullsize |
Hjælpeside-URL | https://github.com/Ondkloss/ig-vsco-fullsize |
Understøttede Sprog | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "description": "__MSG_appDesc__", "version": "1.3.3", "manifest_version": 2, "default_locale": "en", "permissions": [ "activeTab", "webRequest", "webRequestBlocking", "https:\/\/i.instagram.com\/api\/v1\/users\/*", "https:\/\/www.instagram.com\/*", "https:\/\/vsco.co\/*", "https:\/\/www.tiktok.com\/*" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/vsco.co\/*" ], "js": [ "content_vsco.js" ] }, { "matches": [ "https:\/\/www.instagram.com\/*" ], "js": [ "content_ig.js" ], "css": [ "content_ig.css" ] }, { "matches": [ "https:\/\/www.tiktok.com\/*" ], "js": [ "content_tiktok.js" ] } ], "browser_action": [], "icons": { "16": "images\/logo16.png", "32": "images\/logo32.png", "48": "images\/logo48.png", "128": "images\/logo128.png" } } |