Explorer Svg

View svg file in your computer

Was ist Explorer Svg?

Explorer Svg ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "View svg file in your computer".

Erweiterungsscreenshots

screenshot

Explorer Svg-Erweiterungs-CRX-Datei herunterladen

Laden Sie Explorer Svg-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

                        Explorer svg lets you see not just svg files as thumbnails but also other unsupported image formats in your browser. Simply Access your local folder as url in browser.

Explorer Path: G:\SaveMyPeople\PaintColors\patterns
in Browser:   file:///G:/SaveMyPeople/PaintColors/patterns/                    

Grundlegende Informationen zur Erweiterung

Name Explorer Svg Explorer Svg
ID ggkcbiemgdlcempheklmiljdelngeani
Offizielle URL https://chromewebstore.google.com/detail/explorer-svg/ggkcbiemgdlcempheklmiljdelngeani
Beschreibung View svg file in your computer
Dateigröße 22.61 KB
Installationsanzahl 1,002
Aktuelle Version 0.0.1
Letztes Update 2019-04-10
Veröffentlichungsdatum 2019-04-10
Entwickler Unknown
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Explorer Svg",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "View svg file in your computer",
    "homepage_url": "http:\/\/google.com",
    "icons": {
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "icons\/icon48.png",
        "default_title": "browser action demo",
        "default_popup": "src\/browser_action\/browser_action.html"
    },
    "permissions": [
        "https:\/\/*\/* "
    ],
    "content_scripts": [
        {
            "matches": [
                "file:\/\/\/*"
            ],
            "css": [
                "src\/inject\/inject.css"
            ]
        },
        {
            "matches": [
                "file:\/\/\/*"
            ],
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ]
}