Detect Font
Detect fonts used in web pages
ما هو Detect Font؟
Detect Font هو إضافة Chrome تم تطويرها بواسطة @hmarr، والميزة الرئيسية لها هي "Detect fonts used in web pages".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Detect Font
قم بتنزيل ملفات الامتداد Detect Font بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
"What's that gorgeous font?", you ask... Well, now you'll know! Click the icon in the browser toolbar to activate font detection mode, and hover over parts of the page to reveal which font is being used. Unlike other font-detecting extensions, this won't ask for full access to every website you visit. It's only activated when you press the button in the toolbar, so you stay in control of your privacy.
معلومات أساسية عن التمديد
الاسم | Detect Font |
ID | mpljfgaicpdodihppfoolcididbkalce |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/detect-font/mpljfgaicpdodihppfoolcididbkalce |
الوصف | Detect fonts used in web pages |
حجم الملف | 12.29 KB |
عدد التثبيتات | 1,677 |
النسخة الحالية | 1.1 |
آخر تحديث | 2023-10-19 |
تاريخ النشر | 2020-04-10 |
تقييم | 5.00/5 مجموع تقييمات 1 |
المطور | @hmarr |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/hmarr/chrome-detect-font |
عنوان صفحة المساعدة | https://github.com/hmarr/chrome-detect-font/issues |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Detect Font", "version": "1.1", "author": "Harry Marr", "description": "Detect fonts used in web pages", "homepage_url": "https:\/\/github.com\/hmarr\/chrome-detect-font", "icons": { "16": "images\/icon-16.png", "24": "images\/icon-24.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "background": { "service_worker": "background.js" }, "permissions": [ "contextMenus", "scripting", "activeTab" ], "action": { "default_icon": { "16": "images\/icon-16.png", "24": "images\/icon-24.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png" } } } |