Reader Helper Cursor

This extension chanages the browser cursor into a grey block that help to focus text on the page

Co to jest Reader Helper Cursor?

Reader Helper Cursor to rozszerzenie Chrome opracowane przez eboraksdev, a jego główną funkcją jest „This extension chanages the browser cursor into a grey block that help to focus text on the page”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Reader Helper Cursor

Pobierz pliki rozszerzeń Reader Helper Cursor 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

                                            

Podstawowe informacje o rozszerzeniu

Nazwa Reader Helper Cursor Reader Helper Cursor
ID moolofddcfjkhnohmcjmbcifmpgkmbkl
Oficjalny URL https://chromewebstore.google.com/detail/reader-helper-cursor/moolofddcfjkhnohmcjmbcifmpgkmbkl
Opis This extension chanages the browser cursor into a grey block that help to focus text on the page
Rozmiar pliku 89.77 KB
Liczba instalacji 19
Aktualna Wersja 1.2
Ostatnia Aktualizacja 2016-05-26
Data Publikacji 2016-05-26
Deweloper eboraksdev
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": "Reader Helper Cursor",
    "description": "This extension chanages the browser cursor into a grey block that help to focus text on the page",
    "version": "1.2",
    "browser_action": {
        "default_icon": "images\/reader_helper_off_icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "css\/cursors.css"
            ],
            "js": [
                "js\/cursor_control.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "permissions": [
        "activeTab"
    ],
    "icons": {
        "16": "images\/reader_helper_off_icon.png",
        "48": "images\/reader_helper_icon_48.png",
        "128": "images\/reader_helper_icon_128.png"
    },
    "web_accessible_resources": [
        "images\/*.png"
    ]
}