VSCO Viewer

Opens highest possible resolution VSCO images in a new tab!

Co to jest VSCO Viewer?

VSCO Viewer to rozszerzenie Chrome opracowane przez alex, a jego główną funkcją jest „Opens highest possible resolution VSCO images in a new tab!”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia VSCO Viewer

Pobierz pliki rozszerzeń VSCO Viewer 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

                        *WARNING* 
I am not responsible for any misuse of this program. DO NOT use users' pictures for commercial use without their permission.

Opens VSCO images in a new tab at the highest resolution possible! Not affiliated with VSCO in any way. Based off of Click to Remove Element (CTRE) by @blade_sk with permission. 

You can find the changelog at https://pastebin.com/qayjcucq

Please leave a review and/or suggestion! Either would help me greatly! Thanks!                    

Podstawowe informacje o rozszerzeniu

Nazwa VSCO Viewer VSCO Viewer
ID afmhfdkkjmddchbkdlhgejiclbbpgfbf
Oficjalny URL https://chromewebstore.google.com/detail/vsco-viewer/afmhfdkkjmddchbkdlhgejiclbbpgfbf
Opis Opens highest possible resolution VSCO images in a new tab!
Rozmiar pliku 12.14 KB
Liczba instalacji 4,918
Aktualna Wersja 1.2.1
Ostatnia Aktualizacja 2018-04-23
Data Publikacji 2018-04-22
Ocena 4.41/5 Łącznie 27 Oceny
Deweloper alex
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://pastebin.com/qayjcucq
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "all_frames": false,
            "js": [
                "vs_content.js"
            ],
            "matches": [
                "*:\/\/vsco.co\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "description": "Opens highest possible resolution VSCO images in a new tab!",
    "icons": {
        "128": "icon_128.png",
        "16": "icon_16.png",
        "48": "icon_48.png"
    },
    "incognito": "spanning",
    "manifest_version": 2,
    "name": "VSCO Viewer",
    "permissions": [
        "tabs",
        "*:\/\/vsco.co\/*"
    ],
    "version": "1.2.1"
}