Fontanello

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

Vad är Fontanello?

Fontanello är en Chrome-tillägg utvecklad av Fred Bergman, och dess huvudfunktion är "A browser extension that lets you display the basic typographic styles of a text by right-clicking it.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Fontanello-förlängningens CRX-fil

Ladda ner Fontanello-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Fontanello Fontanello
ID jdlhfjlpaijjhklfadlhbbmpjfddkglc
Officiell webbadress https://chromewebstore.google.com/detail/fontanello/jdlhfjlpaijjhklfadlhbbmpjfddkglc
Beskrivning A browser extension that lets you display the basic typographic styles of a text by right-clicking it.
Filstorlek 8.85 KB
Antal Installationer 70,000
Aktuell Version 1.2.2
Senast Uppdaterad 2021-05-02
Publiceringsdatum 2020-02-22
Betyg 4.50/5 Totalt 38 Betyg
Utvecklare Fred Bergman
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://fontanello.app/
Stödda Språk 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"
    }
}