Find website used fonts
Find and list all the fonts used on a web page
Find website used fonts क्या है?
Find website used fonts Rebekah Bailey द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Find and list all the fonts used on a web page"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Find website used fonts एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Curious about the font styles used on a website? Find website used fonts offers the simplest and easiest way to identify fonts on website. Simply click the extension and find together a list of all the fonts used on a web page. The extension acts as a font inspector and accurately assesses all the different fonts used on any website you visit. The Best Feature: it provides a type-in space for you to preview any text in the same font styles as the ones identified on a web page. It’s that simple and easy to use! This Chrome extension is quite handy for all the web developers and designers out-there searching for stunning web design ideas and attention-grabbing fonts. It allows them a preview of their text in the same style as the font that catches their attention from any trendy websites of their liking.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | lnebjgioddkafaldaaeooeghlcholnnp |
आधिकारिक URL | https://chrome.google.com/webstore/detail/lnebjgioddkafaldaaeooeghlcholnnp |
विवरण | Find and list all the fonts used on a web page |
फ़ाइल का आकार | 64.23 KB |
स्थापना संख्या | 59,551 |
वर्तमान संस्करण | 2.0.2 |
अंतिम अपडेट | 2022-09-24 |
प्रकाशन तिथि | 2020-11-30 |
रेटिंग | 4.84/5 कुल 96 रेटिंग्स |
डेवलपर | Rebekah Bailey |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Find website used fonts", "description": "Find and list all the fonts used on a web page", "version": "2.0.2", "icons": { "16": "icons\/icon16.png", "19": "icons\/icon19.png", "32": "icons\/icon32.png", "38": "icons\/icon38.png", "48": "icons\/icon48.png", "96": "icons\/icon96.png", "128": "icons\/icon128.png", "256": "icons\/icon256.png" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "javascripts\/libraries\/Font-Guess\/font-guess.js", "javascripts\/content.js" ], "run_at": "document_start" }, { "matches": [ "*:\/\/*\/*" ], "js": [ "content-scripts\/idle.js" ], "all_frames": true, "run_at": "document_idle" }, { "matches": [ "*:\/\/*\/*" ], "js": [ "content-scripts\/start.js" ], "all_frames": true, "run_at": "document_start" } ], "background": { "persistent": true, "scripts": [ "javascripts\/background.js" ] }, "browser_action": { "default_title": "Find Font", "default_popup": "popup\/popup.html" }, "web_accessible_resources": [ "modal\/modal.html", "modal\/modal.css", "modal\/tooltip.css" ], "permissions": [ "*:\/\/*\/*", "tabs", "storage", "activeTab", "webRequest", "webRequestBlocking" ] } |