Font Overwrite

Overwrites fonts of web-sites.

Co to jest Font Overwrite?

Font Overwrite to rozszerzenie Chrome opracowane przez minostar, a jego główną funkcją jest „Overwrites fonts of web-sites.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Font Overwrite

Pobierz pliki rozszerzeń Font Overwrite 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

                        If you dislike specific font, use this.
(ex. Gulim, Comic Sans)                    

Podstawowe informacje o rozszerzeniu

Nazwa Font Overwrite Font Overwrite
ID efnhmidkajhnpdgfdpfnioiibmdjnkmn
Oficjalny URL https://chromewebstore.google.com/detail/font-overwrite/efnhmidkajhnpdgfdpfnioiibmdjnkmn
Opis Overwrites fonts of web-sites.
Rozmiar pliku 47.6 KB
Liczba instalacji 605
Aktualna Wersja 0.0.2
Ostatnia Aktualizacja 2017-10-14
Data Publikacji 2017-10-14
Ocena 4.33/5 Łącznie 27 Oceny
Deweloper minostar
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": "Font Overwrite",
    "description": "Overwrites fonts of web-sites.",
    "version": "0.0.2",
    "permissions": [
        "storage"
    ],
    "options_page": "options.html",
    "browser_action": {
        "default_popup": "options.html"
    },
    "content_scripts": [
        {
            "exclude_globs": [],
            "include_globs": [
                "*"
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*\/*"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}