Refined Zapier

Refined Zapier

Simplifies the Zapier interface and adds useful features

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Refined Zapier",
  "version": "0.0.9",
  "description": "Simplifies the Zapier interface and adds useful features",
  "homepage_url": "https://github.com/zlwaterfield/refined-zapier",
  "manifest_version": 2,
  "minimum_chrome_version": "88",
  "permissions": [
    "storage",
    "activeTab",
    "https://zapier.com/*"
  ],
  "browser_action": {
    "default_icon": "icon.png"
  },
  "optional_permissions": [
    "*://*/*"
  ],
  "icons": {
    "128": "icon.png"
  },
  "options_ui": {
    "chrome_style": true,
    "page": "options.html"
  },
  "background": {
    "scripts": [
      "build/browser-polyfill.js",
      "build/background.js"
    ]
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "https://zapier.com/*"
      ],
      "css": [
        "build/refined-zapier.css"
      ],
      "js": [
        "build/browser-polyfill.js",
        "build/refined-zapier.js"
      ]
    }
  ],
  "web_accessible_resources": []
}