Instant Font
Instantly switch the font of current page using Google Fonts.
Apa itu Instant Font?
Instant Font adalah ekstensi Chrome yang dikembangkan oleh poe.422, dan fitur utamanya adalah "Instantly switch the font of current page using Google Fonts.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Instant Font
Unduh file ekstensi Instant Font dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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!
Informasi Dasar Ekstensi
Nama | |
ID | mmodigjkaccealcndhpkmleiahmickcf |
URL Resmi | https://chrome.google.com/webstore/detail/instant-font/mmodigjkaccealcndhpkmleiahmickcf |
Deskripsi | Instantly switch the font of current page using Google Fonts. |
Ukuran File | 102 KB |
Jumlah Instalasi | 405 |
Versi Saat Ini | 1.1 |
Terakhir Diperbarui | 2016-11-23 |
Tanggal Publikasi | 2016-11-23 |
Penilaian | 1.80/5 Total 5 Penilaian |
Pengembang | poe.422 |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" ] } ] } |