Rainbow Cursor for Google Docs

Make your cursor rainbow in Google Docs.

Vad är Rainbow Cursor for Google Docs?

Rainbow Cursor for Google Docs är en Chrome-tillägg utvecklad av AtomicCoding, och dess huvudfunktion är "Make your cursor rainbow in Google Docs.".

Tilläggsskärmbilder

screenshot

Ladda ner Rainbow Cursor for Google Docs-förlängningens CRX-fil

Ladda ner Rainbow Cursor for Google Docs-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Rainbow Cursor for Google Docs Rainbow Cursor for Google Docs
ID ndlalmkdjajlefnlimdbmgdhehblelpl
Officiell webbadress https://chromewebstore.google.com/detail/rainbow-cursor-for-google/ndlalmkdjajlefnlimdbmgdhehblelpl
Beskrivning Make your cursor rainbow in Google Docs.
Filstorlek 22.65 KB
Antal Installationer 30,000
Aktuell Version 2.0.0
Senast Uppdaterad 2020-01-13
Publiceringsdatum 2020-01-13
Betyg 3.52/5 Totalt 46 Betyg
Utvecklare AtomicCoding
Betalningssätt free
Tilläggswebbplats https://github.com/AtomicCoding/rainbow-cursor
Stödda Språk 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\/*"
    ]
}