IG+VSCO fullsize

Click extension icon to open current IG or VSCO image in the highest resolution possible

Cos'è IG+VSCO fullsize?

IG+VSCO fullsize è un'estensione di Chrome sviluppata da Ondkloss, e la sua funzione principale è "Click extension icon to open current IG or VSCO image in the highest resolution possible".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione IG+VSCO fullsize

Scarica i file di estensione IG+VSCO fullsize 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

                        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                    

Informazioni di Base sull'Estensione

Nome IG+VSCO fullsize IG+VSCO fullsize
ID ngdfnokoifnihnknoibnbhfhnkmlfocb
URL Ufficiale https://chromewebstore.google.com/detail/ig+vsco-fullsize/ngdfnokoifnihnknoibnbhfhnkmlfocb
Descrizione Click extension icon to open current IG or VSCO image in the highest resolution possible
Dimensione del File 14.11 KB
Conteggio Installazioni 1,878
Versione Corrente 1.3.3
Ultimo Aggiornamento 2020-11-19
Data di Pubblicazione 2020-06-22
Valutazione 3.30/5 Totale 10 Valutazioni
Sviluppatore Ondkloss
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/Ondkloss/ig-vsco-fullsize
URL della Pagina di Aiuto https://github.com/Ondkloss/ig-vsco-fullsize
Lingue Supportate 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"
    }
}