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.”。

扩展截图

screenshot
screenshot
screenshot

下载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 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__"
        }
    }
}