Rainbow Cursor for Google Docs
Make your cursor rainbow in Google Docs.
Rainbow Cursor for Google Docsとは何ですか?
Rainbow Cursor for Google DocsはAtomicCodingによって開発されたChromeの拡張機能で、その主な機能は「Make your cursor rainbow in Google Docs.」です。
拡張機能のスクリーンショット
Rainbow Cursor for Google Docs拡張機能のCRXファイルをダウンロード
Rainbow Cursor for Google Docs拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension replaces the default black cursor of Google Docs with a rainbow gradient allowing you to type in style. 拡張機能の基本情報
| 名前 | |
| ID | ndlalmkdjajlefnlimdbmgdhehblelpl |
| 公式URL | https://chromewebstore.google.com/detail/rainbow-cursor-for-google/ndlalmkdjajlefnlimdbmgdhehblelpl |
| 説明 | Make your cursor rainbow in Google Docs. |
| ファイルサイズ | 22.65 KB |
| インストール数 | 30,000 |
| 現在のバージョン | 2.0.0 |
| 最終更新日 | 2020-01-13 |
| 公開日 | 2020-01-13 |
| 評価 | 3.52/5 合計 46 レビュー |
| 開発者 | AtomicCoding |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/AtomicCoding/rainbow-cursor |
| 対応言語 | 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\/*"
]
} | |