VSCO Viewer

Opens highest possible resolution VSCO images in a new tab!

Was ist VSCO Viewer?

VSCO Viewer ist eine Chrome-Erweiterung, die von alex entwickelt wurde, und ihr Hauptmerkmal ist "Opens highest possible resolution VSCO images in a new tab!".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

VSCO Viewer-Erweiterungs-CRX-Datei herunterladen

Laden Sie VSCO Viewer-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

                        *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!                    

Grundlegende Informationen zur Erweiterung

Name VSCO Viewer VSCO Viewer
ID afmhfdkkjmddchbkdlhgejiclbbpgfbf
Offizielle URL https://chromewebstore.google.com/detail/vsco-viewer/afmhfdkkjmddchbkdlhgejiclbbpgfbf
Beschreibung Opens highest possible resolution VSCO images in a new tab!
Dateigröße 12.14 KB
Installationsanzahl 4,918
Aktuelle Version 1.2.1
Letztes Update 2018-04-23
Veröffentlichungsdatum 2018-04-22
Bewertung 4.41/5 Insgesamt 27 Bewertungen
Entwickler alex
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://pastebin.com/qayjcucq
Unterstützte Sprachen 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"
}