Which Font Is This ?

A chrome plugin to identify fonts on websites & web pages.

Hvad er Which Font Is This ??

Which Font Is This ? er en Chrome-udvidelse udviklet af http://yassershaikh.com, og dens hovedfunktion er "A chrome plugin to identify fonts on websites & web pages.".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Which Font Is This ?-udvidelses-CRX-fil

Download Which Font Is This ?-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 Note: You need to refresh your page once after installing this extension.

A user friendly way to find out which font, font color or background colors are in use on any website.

For any bug report/suggestion/feedback send me a mail at [email protected]                    

Grundlæggende oplysninger om udvidelsen

Navn Which Font Is This ? Which Font Is This ?
ID obhkckbkndockmajpedihihnplcgchgh
Officiel URL https://chrome.google.com/webstore/detail/which-font-is-this/obhkckbkndockmajpedihihnplcgchgh
Beskrivelse A chrome plugin to identify fonts on websites & web pages.
Filstørrelse 43.45 KB
Antal Installationer 10,000
Nuværende Version 2
Senest Opdateret 2014-04-09
Udgivelsesdato 2014-04-09
Bedømmelse 3.18/5 Samlet 11 Bedømmelser
Udvikler http://yassershaikh.com
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted http://yassershaikh.com/plugins/
Hjælpeside-URL http://yassershaikh.com/plugins/
Understøttede Sprog en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "2",
    "manifest_version": 2,
    "name": "Which Font Is This ?",
    "description": "A chrome plugin to identify fonts on websites & web pages.",
    "homepage_url": "http:\/\/yassershaikh.com",
    "icons": {
        "128": "logo.png"
    },
    "browser_action": {
        "default_icon": "logo.png",
        "default_popup": "popup.html",
        "default_title": "What Font Is This ?"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.min.js"
            ],
            "css": [
                "whichfontisthis.css"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "http:\/\/localhost.com\/"
    ],
    "web_accessible_resources": [
        "whichfontisthis.css",
        "logo.png"
    ]
}