Sheets Row Highlighter

Highlight a row (and column) of current cell in Google Sheets and Microsoft Excel Online.

Что такое Sheets Row Highlighter?

Sheets Row Highlighter - это расширение Chrome, разработанное matsu7089, и его основная функция - "Highlight a row (and column) of current cell in Google Sheets and Microsoft Excel Online.".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Sheets Row Highlighter

Скачайте файлы расширений 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__"
        }
    }
}