Sheets Row Highlighter
Highlight a row (and column) of current cell in Google Sheets and Microsoft Excel Online.
Sheets Row Highlighter là gì?
Sheets Row Highlighter là một tiện ích mở rộng Chrome được phát triển bởi matsu7089, và tính năng chính của nó là "Highlight a row (and column) of current cell in Google Sheets and Microsoft Excel Online.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Sheets Row Highlighter
Tải xuống các tệp mở rộng Sheets Row Highlighter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Sheets Row Highlighter |
ID | cejijldbedfmdehondfmoadlkhgjcmkd |
URL Chính Thức | https://chromewebstore.google.com/detail/sheets-row-highlighter/cejijldbedfmdehondfmoadlkhgjcmkd |
Mô tả | Highlight a row (and column) of current cell in Google Sheets and Microsoft Excel Online. |
Kích Thước Tệp | 27.64 KB |
Số Lần Cài Đặt | 10,000 |
Phiên Bản Hiện Tại | 2.1.0 |
Cập Nhật Lần Cuối | 2024-03-03 |
Ngày Phát Hành | 2021-01-01 |
Đánh Giá | 4.88/5 Tổng số 49 Đánh Giá |
Nhà Phát Triển | matsu7089 |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/matsu7089/sheets-row-highlighter |
Ngôn Ngữ Được Hỗ Trợ | 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__" } } } |