Google Sheets Row Highlighter

Google Sheets Row Highlighter

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

Additional files are visible only to premium users

manifest.json


{
  "name": "Google Sheets Row Highlighter",
  "short_name": "Row Highlighter",
  "version": "1.1.2",
  "manifest_version": 2,
  "default_locale": "en",
  "description": "__MSG_extensionDescription__",
  "homepage_url": "https://github.com/matsu7089/googlesheets-row-highlighter",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://docs.google.com/spreadsheets/d/*"
      ],
      "js": [
        "scripts/content.js"
      ]
    }
  ],
  "browser_action": {
    "default_popup": "pages/popup.html"
  },
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "permissions": [
    "storage"
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "commands": {
    "toggleRow": {
      "description": "__MSG_toggleRowDescription__"
    },
    "toggleColumn": {
      "description": "__MSG_toggleColumnDescription__"
    }
  }
}