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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
이메일 | [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__" } } } |