Font Picker

A simple helper to identify font details from any website

Hvad er Font Picker?

Font Picker er en Chrome-udvidelse udviklet af Paul Krishnamurthy, og dens hovedfunktion er "A simple helper to identify font details from any website".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot
screenshot
screenshot

Download Font Picker-udvidelses-CRX-fil

Download Font Picker-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

                        ** IMPORTANT: ONCE YOU INSTALL THE EXTENSION, YOU NEED TO RELOAD YOUR TABS FOR EVERYTHING TO WORK**

Font Picker is a clean and simple tool for identifying fonts and their details on any website.

Once you install the extension, you will have the ability to right click on any text and view its font details. Clicking the "Font Details" option will open up a pop up with all the information you need about that font. This method is much faster and nicer than having to go and personally inspect the source code.

Enjoy!                    

Grundlæggende oplysninger om udvidelsen

Navn Font Picker Font Picker
ID mmjbimgpcbaegjiieojddickpjbdkeej
Officiel URL https://chromewebstore.google.com/detail/font-picker/mmjbimgpcbaegjiieojddickpjbdkeej
Beskrivelse A simple helper to identify font details from any website
Filstørrelse 358 KB
Antal Installationer 71,503
Nuværende Version 1.0.5
Senest Opdateret 2021-08-26
Udgivelsesdato 2017-11-18
Bedømmelse 3.06/5 Samlet 54 Bedømmelser
Udvikler Paul Krishnamurthy
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted http://paulkr.com/
Understøttede Sprog en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Font Picker",
    "short_name": "FP",
    "description": "A simple helper to identify font details from any website",
    "version": "1.0.5",
    "author": "Paul Krishnamurthy",
    "homepage_url": "https:\/\/paulkr.com\/",
    "permissions": [
        "contextMenus",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "activeTab"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "manifest_version": 2,
    "icons": {
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon128.png",
        "default_title": "Font Picker",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/jquery.min.js",
                "js\/sweetalert.min.js",
                "js\/content.js"
            ],
            "css": [
                "styles\/sweetalert.css",
                "styles\/custom.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "logo.png",
        "background.png"
    ]
}