Instant Font
Instantly switch the font of current page using Google Fonts.
Co to jest Instant Font?
Instant Font to rozszerzenie Chrome opracowane przez poe.422, a jego główną funkcją jest „Instantly switch the font of current page using Google Fonts.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Instant Font
Pobierz pliki rozszerzeń Instant Font w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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!
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | mmodigjkaccealcndhpkmleiahmickcf |
Oficjalny URL | https://chrome.google.com/webstore/detail/instant-font/mmodigjkaccealcndhpkmleiahmickcf |
Opis | Instantly switch the font of current page using Google Fonts. |
Rozmiar pliku | 102 KB |
Liczba instalacji | 405 |
Aktualna Wersja | 1.1 |
Ostatnia Aktualizacja | 2016-11-23 |
Data Publikacji | 2016-11-23 |
Ocena | 1.80/5 Łącznie 5 Oceny |
Deweloper | poe.422 |
Typ Płatności | free |
Obsługiwane Języki | 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" ] } ] } |