SVG Screenshot

Take scalable, semantic, accessible screenshots, in SVG format.

Qu'est-ce que SVG Screenshot ?

SVG Screenshot est une extension Chrome développée par felixfbecker, et sa fonction principale est "Take scalable, semantic, accessible screenshots, in SVG format.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension SVG Screenshot

Téléchargez les fichiers d'extension SVG Screenshot au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        SVG screenshots offer various benefits over normal PNG screenshots, while keeping the good parts:

🖼 Flexible: Freely select the region of the website you want to capture or capture the whole page.
💢 Scalable graphics: Screenshots never get pixelated when zooming in.
📝 Semantic: Text can still be selected and copied to clipboard.
🦻 Accessible: SVG is annotated with ARIA attributes and can be read by screen readers.
🖥 Paste into design tools: SVGs will work in design tools like Illustrator, Figma, Sketch etc.
🔗 Interactive: Links are still clickable.
📦 Self-contained: Inlines external resources like images, fonts, etc.
📸 Static: Styles and layout are recorded at the time of snapshot and will not change.
🗜 Small: Depending on the content, SVGs can be magnitudes smaller than PNGs and compress loslessly.
🛡 Secure: The SVG will not contain any JavaScript.                    

Informations de Base sur l'Extension

Nom SVG Screenshot SVG Screenshot
ID nfakpcpmhhilkdpphcjgnokknpbpdllg
URL Officiel https://chromewebstore.google.com/detail/svg-screenshot/nfakpcpmhhilkdpphcjgnokknpbpdllg
Description Take scalable, semantic, accessible screenshots, in SVG format.
Taille du Fichier 511 KB
Nombre d'Installations 6,291
Version Actuelle 0.11.5
Dernière Mise à Jour 2021-05-24
Date de Publication 2020-10-26
Évaluation 4.36/5 Total 25 Évaluations
Développeur felixfbecker
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/felixfbecker/svg-screenshots
URL de la Page d'Aide https://github.com/felixfbecker/svg-screenshots/issues
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "SVG Screenshot",
    "description": "Take scalable, semantic, accessible screenshots, in SVG format.",
    "version": "0.11.5",
    "permissions": [
        "activeTab",
        "",
        "storage"
    ],
    "icons": {
        "128": "images\/icon_128.png",
        "256": "images\/icon_256.png"
    },
    "web_accessible_resources": [
        "src\/content.js"
    ],
    "browser_action": {
        "default_popup": "src\/popup.html",
        "default_title": "Capture SVG screenshot",
        "default_icon": {
            "128": "images\/icon_128.png",
            "256": "images\/icon_256.png"
        }
    },
    "background": {
        "scripts": [
            "src\/background.js"
        ]
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "svg-screenshots@felixfbecker"
        }
    }
}