Base Table Hider

Base Table Hider

Toogle visibilty of Airtable tables inside a base.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Base Table Hider",
  "version": "1.0.0",
  "description": "Toogle visibilty of Airtable tables inside a base.",
  "manifest_version": 3,
  "author": "Byteglad",
  "action": {
    "default_popup": "popup.html",
    "default_title": "Hide Airtables"
  },
  "permissions": [
    "activeTab",
    "scripting",
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://airtable.com/*",
        "https://unpkg.com/[email protected]/*",
        "https://fonts.googleapis.com/*"
      ],
      "runAt": "document_end",
      "css": [
        "css/main.css"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "host_permissions": [
    "https://airtable.com/*"
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  }
}