IG+VSCO fullsize
Click extension icon to open current IG or VSCO image in the highest resolution possible
Was ist IG+VSCO fullsize?
IG+VSCO fullsize ist eine Chrome-Erweiterung, die von Ondkloss entwickelt wurde, und ihr Hauptmerkmal ist "Click extension icon to open current IG or VSCO image in the highest resolution possible".
Erweiterungsscreenshots
IG+VSCO fullsize-Erweiterungs-CRX-Datei herunterladen
Laden Sie IG+VSCO fullsize-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | IG+VSCO fullsize |
ID | ngdfnokoifnihnknoibnbhfhnkmlfocb |
Offizielle URL | https://chromewebstore.google.com/detail/ig+vsco-fullsize/ngdfnokoifnihnknoibnbhfhnkmlfocb |
Beschreibung | Click extension icon to open current IG or VSCO image in the highest resolution possible |
Dateigröße | 14.11 KB |
Installationsanzahl | 1,878 |
Aktuelle Version | 1.3.3 |
Letztes Update | 2020-11-19 |
Veröffentlichungsdatum | 2020-06-22 |
Bewertung | 3.30/5 Insgesamt 10 Bewertungen |
Entwickler | Ondkloss |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/Ondkloss/ig-vsco-fullsize |
Hilfeseite URL | https://github.com/Ondkloss/ig-vsco-fullsize |
Unterstützte Sprachen | 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" } } |