Fontsnatcher

Discover the fonts used on the web

Fontsnatcher क्या है?

Fontsnatcher Agencial द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Discover the fonts used on the web"।

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

screenshot
screenshot
screenshot

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

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

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

                        Ever visited a web page and wondered what font was being used to design it?

Fontsnatcher is a lightweight browser extension that allows you to find out what font is being used on a webpage simply by pointing and clicking. 

You never have to waste time on digging through a bunch of code in your Chrome Dev Tools to find the name of a font ever again, now you can just snatch it!

Just activate the extension and discover the fonts for the text you want!

✓ Find out the font you've always wondered about
✓ Test it out and play around with it in-app
✓ Discover new fonts similar to it
✓ Bring out your creativity
✓ All for free!

Try it out now.                    

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

नाम Fontsnatcher Fontsnatcher
ID bkbjgdkgamoljeaabnjpelaigcdnmdpi
आधिकारिक URL https://chromewebstore.google.com/detail/fontsnatcher/bkbjgdkgamoljeaabnjpelaigcdnmdpi
विवरण Discover the fonts used on the web
फ़ाइल का आकार 657 KB
स्थापना संख्या 397
वर्तमान संस्करण 1.1.7
अंतिम अपडेट 2022-06-25
प्रकाशन तिथि 2021-11-30
रेटिंग 4.86/5 कुल 7 रेटिंग्स
डेवलपर Agencial
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://www.fontsnatcher.co/
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Fontsnatcher",
    "description": "Discover the fonts used on the web",
    "version": "1.1.7",
    "author": "Jojo Duke",
    "icons": {
        "128": ".\/images\/icon_128.png"
    },
    "browser_action": {
        "default_icon": ".\/images\/icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "web_accessible_resources": [
        "content.css",
        "findfont.html",
        "findfont.js",
        "images\/toolbar\/textIcon.svg",
        "images\/toolbar\/boldIcon.svg",
        "images\/toolbar\/italicsIcon.svg",
        "images\/toolbar\/alignLeftIcon.svg",
        "images\/toolbar\/alignCenterIcon.svg",
        "images\/toolbar\/alignRightIcon.svg"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "all_frames": true,
            "js": [
                "content.js",
                ".\/fabric_package\/dist\/fabric.js"
            ],
            "css": [
                "content.css"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}