Rainbow Cursor for Google Docs

Make your cursor rainbow in Google Docs.

Co to jest Rainbow Cursor for Google Docs?

Rainbow Cursor for Google Docs to rozszerzenie Chrome opracowane przez AtomicCoding, a jego główną funkcją jest „Make your cursor rainbow in Google Docs.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Rainbow Cursor for Google Docs

Pobierz pliki rozszerzeń Rainbow Cursor for Google Docs 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

                        This extension replaces the default black cursor of Google Docs with a rainbow gradient allowing you to type in style.                    

Podstawowe informacje o rozszerzeniu

Nazwa Rainbow Cursor for Google Docs Rainbow Cursor for Google Docs
ID ndlalmkdjajlefnlimdbmgdhehblelpl
Oficjalny URL https://chromewebstore.google.com/detail/rainbow-cursor-for-google/ndlalmkdjajlefnlimdbmgdhehblelpl
Opis Make your cursor rainbow in Google Docs.
Rozmiar pliku 22.65 KB
Liczba instalacji 30,000
Aktualna Wersja 2.0.0
Ostatnia Aktualizacja 2020-01-13
Data Publikacji 2020-01-13
Ocena 3.52/5 Łącznie 46 Oceny
Deweloper AtomicCoding
Typ Płatności free
Strona Rozszerzenia https://github.com/AtomicCoding/rainbow-cursor
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Rainbow Cursor for Google Docs",
    "short_name": "Rainbow Crsr",
    "version": "2.0.0",
    "manifest_version": 2,
    "description": "Make your cursor rainbow in Google Docs.",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/docs.google.com\/document\/*",
                "http:\/\/docs.google.com\/document\/*"
            ],
            "js": [
                "rainbow.js"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_title": "Rainbow Cursor",
        "default_icon": "icon.png"
    },
    "permissions": [
        "http:\/\/docs.google.com\/*",
        "https:\/\/docs.google.com\/*"
    ]
}