Fontsnatcher
Discover the fonts used on the web
Fontsnatcher란 무엇입니까?
Fontsnatcher은(는) Agencial에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Discover the fonts used on the web"입니다.
확장 프로그램 스크린샷
Fontsnatcher 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
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" ] } } |