Send to Airtable

Send to Airtable

Send information about the current page to Airtable

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Send to Airtable",
  "description": "Send information about the current page to Airtable",
  "version": "2.1.5",
  "browser_action": {
    "default_icon": "img/icon.png",
    "default_title": "Save to airtable"
  },
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/jquery-2.2.0.min.js",
        "js/html2canvas.min.js",
        "notes.js"
      ],
      "all_frames": true
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "options_page": "options.html",
  "web_accessible_resources": [
    "popup.html",
    "popup_add.html",
    "api.js"
  ],
  "permissions": [
    "storage",
    "tabs"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}