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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Highlight a row (and column) of current cell in Google Sheets and Microsoft Excel Online."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Sheets Row Highlighter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 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__"
        }
    }
}