Adjust HackerNews Font Size

Adjust news.ycombinator.com font size, and save your local setting.

Co to jest Adjust HackerNews Font Size?

Adjust HackerNews Font Size to rozszerzenie Chrome opracowane przez shengyiran, a jego główną funkcją jest „Adjust news.ycombinator.com font size, and save your local setting.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Adjust HackerNews Font Size

Pobierz pliki rozszerzeń Adjust HackerNews Font Size 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

                        A small tool to enhance readability on http://news.ycombinator.com/. This extension allows you to resize the content fonts for hacker news, proportionally to their original size.                    

Podstawowe informacje o rozszerzeniu

Nazwa Adjust HackerNews Font Size Adjust HackerNews Font Size
ID aeddhhildjkggkgmnpodilmofhbalmop
Oficjalny URL https://chromewebstore.google.com/detail/adjust-hackernews-font-si/aeddhhildjkggkgmnpodilmofhbalmop
Opis Adjust news.ycombinator.com font size, and save your local setting.
Rozmiar pliku 20.24 KB
Liczba instalacji 72
Aktualna Wersja 3.1.2
Ostatnia Aktualizacja 2013-03-12
Data Publikacji 2013-03-11
Deweloper shengyiran
Typ Płatności free
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Adjust HackerNews Font Size",
    "manifest_version": 2,
    "version": "3.1.2",
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "description": "Adjust news.ycombinator.com font size, and save your local setting.",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/news.ycombinator.com\/*",
                "https:\/\/news.ycombinator.com\/*"
            ],
            "js": [
                "hnfontsize.js"
            ]
        }
    ],
    "permissions": [
        "http:\/\/news.ycombinator.com\/*",
        "https:\/\/news.ycombinator.com\/*",
        "storage"
    ],
    "web_accessible_resources": [
        "font_size.gif"
    ]
}