Instant Font
Instantly switch the font of current page using Google Fonts.
ما هو Instant Font؟
Instant Font هو إضافة Chrome تم تطويرها بواسطة poe.422، والميزة الرئيسية لها هي "Instantly switch the font of current page using Google Fonts.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Instant Font
قم بتنزيل ملفات الامتداد Instant Font بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
You can instantly switch current page's font to Google Fonts' web font. Also, you can input CSS selector to specify element where you want to apply font. Instant Font gonna help your web design/development work flow!
معلومات أساسية عن التمديد
الاسم | |
ID | mmodigjkaccealcndhpkmleiahmickcf |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/instant-font/mmodigjkaccealcndhpkmleiahmickcf |
الوصف | Instantly switch the font of current page using Google Fonts. |
حجم الملف | 102 KB |
عدد التثبيتات | 405 |
النسخة الحالية | 1.1 |
آخر تحديث | 2016-11-23 |
تاريخ النشر | 2016-11-23 |
تقييم | 1.80/5 مجموع تقييمات 5 |
المطور | poe.422 |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Instant Font", "version": "1.1", "permissions": [ "tabs" ], "description": "Instantly switch the font of current page using Google Fonts.", "icons": { "128": "images\/icon128.png" }, "author": "Masahiro Harada", "browser_action": { "default_icon": { "19": "images\/icon19.png", "38": "images\/icon38.png" }, "default_title": "Instant Font", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/lib\/webfont.js", "js\/build\/content_scripts.js" ] } ] } |