Fontsnatcher

Discover the fonts used on the web

Fontsnatcher là gì?

Fontsnatcher là một tiện ích mở rộng Chrome được phát triển bởi Agencial, và tính năng chính của nó là "Discover the fonts used on the web".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Fontsnatcher

Tải xuống các tệp mở rộng Fontsnatcher dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Fontsnatcher Fontsnatcher
ID bkbjgdkgamoljeaabnjpelaigcdnmdpi
URL Chính Thức https://chromewebstore.google.com/detail/fontsnatcher/bkbjgdkgamoljeaabnjpelaigcdnmdpi
Mô tả Discover the fonts used on the web
Kích Thước Tệp 657 KB
Số Lần Cài Đặt 397
Phiên Bản Hiện Tại 1.1.7
Cập Nhật Lần Cuối 2022-06-25
Ngày Phát Hành 2021-11-30
Đánh Giá 4.86/5 Tổng số 7 Đánh Giá
Nhà Phát Triển Agencial
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.fontsnatcher.co/
Ngôn Ngữ Được Hỗ Trợ 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"
        ]
    }
}