Fontify

Add style to your social network posts.

Fontify란 무엇입니까?

Fontify은(는) Mitteloupe Limited에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add style to your social network posts."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Fontify 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Do you want to 𝓈𝓅𝒾𝒸ℯ 𝓊𝓅 your social media posts with different fonts and styles?

With 𝐅𝐨𝐧𝐭𝐢𝐟𝐲, you can easily customize the text of your posts on Facebook, LinkedIn and Twitter (other platforms coming soon!). Fontify lets you choose from a variety of fonts to make your posts stand out. Whether you want to express your mood, personality or creativity, Fontify has the perfect font for you. Just choose a font, select the text to update and click on the Fontify icon. Fontify will apply the selected style to your text. You can also preview and change the style before publishing. Fontify is simple, fun and free.

Supported fonts:
Normal
𝐒𝐞𝐫𝐢𝐟 𝐁𝐨𝐥𝐝
𝑆𝑒𝑟𝑖𝑓 𝐼𝑡𝑎𝑙𝑖𝑐
𝑺𝒆𝒓𝒊𝒇 𝑩𝒐𝒍𝒅 𝑰𝒕𝒂𝒍𝒊𝒄
𝖲𝖺𝗇𝗌-𝖲𝖾𝗋𝗂𝖿
𝗦𝗮𝗻𝘀-𝗦𝗲𝗿𝗶𝗳 𝗕𝗼𝗹𝗱
𝘚𝘢𝘯𝘴-𝘚𝘦𝘳𝘪𝘧 𝘐𝘵𝘢𝘭𝘪𝘤
𝙎𝙖𝙣𝙨-𝙎𝙚𝙧𝙞𝙛 𝘽𝙤𝙡𝙙 𝙄𝙩𝙖𝙡𝙞𝙘
𝒮𝒸𝓇𝒾𝓅𝓉
𝓢𝓬𝓻𝓲𝓹𝓽 𝓑𝓸𝓵𝓭
𝔉𝔯𝔞𝔨𝔱𝔲𝔯
𝕱𝖗𝖆𝖐𝖙𝖚𝖗 𝕭𝖔𝖑𝖉
Ⓔⓝⓒⓛⓞⓢⓔⓓ
🅔🅝🅒🅛🅞🅢🅔🅓 🅝🅔🅖🅐🅣🅘🅥🅔
𝙼𝚘𝚗𝚘-𝚂𝚙𝚊𝚌𝚎
𝔻𝕠𝕦𝕓𝕝𝕖-𝕊𝕥𝕣𝕦𝕔𝕜

Download it today and unleash your inner font artist!                    

확장 프로그램 기본 정보

이름 Fontify Fontify
ID dgoaelolmehccnegjlhmklglgmnennai
공식 URL https://chromewebstore.google.com/detail/fontify/dgoaelolmehccnegjlhmklglgmnennai
설명 Add style to your social network posts.
파일 크기 51.09 KB
설치 횟수 89
현재 버전 0.0.5
최근 업데이트 2023-06-03
출시 날짜 2023-05-12
평점 5.00/5 총 1 개의 평점
개발자 Mitteloupe Limited
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/EranBoudjnah/Fontify
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Fontify",
    "version": "0.0.5",
    "manifest_version": 3,
    "description": "Add style to your social network posts.",
    "icons": {
        "16": "icons\/fontify_16x16.png",
        "32": "icons\/fontify_32x32.png",
        "48": "icons\/fontify_48x48.png",
        "128": "icons\/fontify_128x128.png"
    },
    "action": {
        "default_popup": "popup\/popup.html"
    },
    "background": {
        "service_worker": "lib\/background.js"
    },
    "permissions": [
        "tabs",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/*.linkedin.com\/*",
        "https:\/\/linkedin.com\/*",
        "https:\/\/*.facebook.com\/*",
        "https:\/\/facebook.com\/*",
        "https:\/\/*.twitter.com\/*",
        "https:\/\/twitter.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.linkedin.com\/*",
                "https:\/\/linkedin.com\/*"
            ],
            "js": [
                "lib\/jquery-3.6.4.min.js"
            ],
            "css": [
                "css\/fontify-linkedin.css"
            ]
        },
        {
            "matches": [
                "https:\/\/*.facebook.com\/*",
                "https:\/\/facebook.com\/*"
            ],
            "js": [
                "lib\/jquery-3.6.4.min.js"
            ],
            "css": [
                "css\/fontify-facebook.css"
            ]
        },
        {
            "matches": [
                "https:\/\/*.twitter.com\/*",
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "lib\/jquery-3.6.4.min.js"
            ],
            "css": [
                "css\/fontify-twitter.css"
            ]
        }
    ]
}