Sheets Row Highlighter
Highlight a row (and column) of current cell in Google Sheets and Microsoft Excel Online.
Sheets Row Highlighterとは何ですか?
Sheets Row Highlighterはmatsu7089によって開発されたChromeの拡張機能で、その主な機能は「Highlight a row (and column) of current cell in Google Sheets and Microsoft Excel Online.」です。
拡張機能のスクリーンショット
Sheets Row Highlighter拡張機能のCRXファイルをダウンロード
Sheets Row Highlighter拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Features: * Highlight row and column. (Only when the current cell is in the screen) * Change highlight color and opacity. * Shortcuts for toggle highlight. * Automatically save and apply highlight settings on a per-sheet basis. You can add shortcuts from the "chrome://extensions/shortcuts" If you like it, I'd appreciate it if you could give it a star! https://github.com/matsu7089/sheets-row-highlighter
拡張機能の基本情報
名前 | Sheets Row Highlighter |
ID | cejijldbedfmdehondfmoadlkhgjcmkd |
公式URL | https://chromewebstore.google.com/detail/sheets-row-highlighter/cejijldbedfmdehondfmoadlkhgjcmkd |
説明 | Highlight a row (and column) of current cell in Google Sheets and Microsoft Excel Online. |
ファイルサイズ | 27.64 KB |
インストール数 | 10,000 |
現在のバージョン | 2.1.0 |
最終更新日 | 2024-03-03 |
公開日 | 2021-01-01 |
評価 | 4.88/5 合計 49 レビュー |
開発者 | matsu7089 |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/matsu7089/sheets-row-highlighter |
対応言語 | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Sheets Row Highlighter", "short_name": "Row Highlighter", "version": "2.1.0", "manifest_version": 3, "default_locale": "en", "description": "__MSG_extensionDescription__", "homepage_url": "https:\/\/github.com\/matsu7089\/sheets-row-highlighter", "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/docs.google.com\/spreadsheets\/d\/*", "https:\/\/*.officeapps.live.com\/x\/*" ], "js": [ "scripts\/content\/SheetsActiveCellLocator.js", "scripts\/content\/ExcelActiveCellLocator.js", "scripts\/content\/RowHighlighterApp.js", "scripts\/content\/main.js" ], "all_frames": true } ], "action": { "default_popup": "pages\/popup.html" }, "background": { "service_worker": "scripts\/background.js" }, "permissions": [ "storage", "activeTab" ], "commands": { "toggleRow": { "description": "__MSG_toggleRowDescription__" }, "toggleColumn": { "description": "__MSG_toggleColumnDescription__" }, "toggleBoth": { "description": "__MSG_toggleBothDescription__" } } } |