Fontsnatcher

Discover the fonts used on the web

什么是Fontsnatcher?

Fontsnatcher是由Agencial开发的Chrome扩展程序,该扩展的主要功能是“Discover the fonts used on the web”。

扩展截图

screenshot
screenshot
screenshot

下载Fontsnatcher扩展crx文件

下载Fontsnatcher扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
        ]
    }
}