Fontanello

A browser extension that lets you display the basic typographic styles of a text by right-clicking it.

Qu'est-ce que Fontanello ?

Fontanello est une extension Chrome développée par Fred Bergman, et sa fonction principale est "A browser extension that lets you display the basic typographic styles of a text by right-clicking it.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Fontanello

Téléchargez les fichiers d'extension Fontanello 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

                        Fontanello makes it super easy to inspect typography on a webpage. It will show you information about typeface, weight, size, color and some other less used CSS-properties. It also show information about contrast for selected text.                    

Informations de Base sur l'Extension

Nom Fontanello Fontanello
ID jdlhfjlpaijjhklfadlhbbmpjfddkglc
URL Officiel https://chromewebstore.google.com/detail/fontanello/jdlhfjlpaijjhklfadlhbbmpjfddkglc
Description A browser extension that lets you display the basic typographic styles of a text by right-clicking it.
Taille du Fichier 8.85 KB
Nombre d'Installations 70,000
Version Actuelle 1.2.2
Dernière Mise à Jour 2021-05-02
Date de Publication 2020-02-22
Évaluation 4.50/5 Total 38 Évaluations
Développeur Fred Bergman
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://fontanello.app/
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Fontanello",
    "version": "1.2.2",
    "description": "A browser extension that lets you display the basic typographic styles of a text by right-clicking it.",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "client.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "minimum_chrome_version": "45",
    "manifest_version": 2,
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    }
}