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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Find and list all the fonts used on a web page"입니다.
확장 프로그램 스크린샷
Find website used fonts 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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" ] } |