Fontanello

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

Hvad er Fontanello?

Fontanello er en Chrome-udvidelse udviklet af Fred Bergman, og dens hovedfunktion er "A browser extension that lets you display the basic typographic styles of a text by right-clicking it.".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot

Download Fontanello-udvidelses-CRX-fil

Download Fontanello-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Fontanello Fontanello
ID jdlhfjlpaijjhklfadlhbbmpjfddkglc
Officiel URL https://chromewebstore.google.com/detail/fontanello/jdlhfjlpaijjhklfadlhbbmpjfddkglc
Beskrivelse A browser extension that lets you display the basic typographic styles of a text by right-clicking it.
Filstørrelse 8.85 KB
Antal Installationer 70,000
Nuværende Version 1.2.2
Senest Opdateret 2021-05-02
Udgivelsesdato 2020-02-22
Bedømmelse 4.50/5 Samlet 38 Bedømmelser
Udvikler Fred Bergman
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://fontanello.app/
Understøttede Sprog 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"
    }
}