Font Picker

A simple helper to identify font details from any website

Font Picker क्या है?

Font Picker Paul Krishnamurthy द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A simple helper to identify font details from any website"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Font Picker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        ** 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!                    

एक्सटेंशन की मूल जानकारी

नाम Font Picker Font Picker
ID mmjbimgpcbaegjiieojddickpjbdkeej
आधिकारिक URL https://chromewebstore.google.com/detail/font-picker/mmjbimgpcbaegjiieojddickpjbdkeej
विवरण A simple helper to identify font details from any website
फ़ाइल का आकार 358 KB
स्थापना संख्या 71,503
वर्तमान संस्करण 1.0.5
अंतिम अपडेट 2021-08-26
प्रकाशन तिथि 2017-11-18
रेटिंग 3.06/5 कुल 54 रेटिंग्स
डेवलपर Paul Krishnamurthy
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://paulkr.com/
समर्थित भाषाएँ 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"
    ]
}