SVG link viewer

Show previews of all links to SVGs

Wat is SVG link viewer?

SVG link viewer is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie is "Show previews of all links to SVGs".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie SVG link viewer

Download SVG link viewer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Searches the DOM for links containing SVGs and displays a preview of that SVG below the link.                    

Basisinformatie over de Extensie

Naam SVG link viewer SVG link viewer
ID lnggninmgmlcfbancjjfiplammfeeihj
Officiële URL https://chromewebstore.google.com/detail/svg-link-viewer/lnggninmgmlcfbancjjfiplammfeeihj
Beschrijving Show previews of all links to SVGs
Bestandsgrootte 34.06 KB
Aantal Installaties 694
Huidige Versie 2
Laatst Bijgewerkt 2015-10-26
Publicatiedatum 2015-10-26
Beoordeling 1.50/5 Totaal 6 Beoordelingen
Ontwikkelaar Unknown
Betalingswijze free
Ondersteunde Talen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SVG link viewer",
    "manifest_version": 2,
    "version": "2",
    "description": "Show previews of all links to SVGs",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "name": "Preview SVGs",
        "icons": [
            "icon.png"
        ],
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "js": [
                "jquery.min.js",
                "background.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}