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