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