Mr. Table (by TYO lab)

Mr. Table (by TYO lab)

Export table(s) in the web pages into downloadable CSV, JSON file(s)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Mr. Table (by TYO lab)",
  "description": "Export table(s) in the web pages into downloadable CSV, JSON file(s)",
  "version": "0.0.2",
  "icons": {
    "16": "images/favicon-16x16.png",
    "32": "images/favicon-32x32.png",
    "96": "images/favicon-96x96.png",
    "128": "images/favicon-128x128.png"
  },
  "permissions": [
    "storage",
    "tabs",
    "http://*/",
    "https://*/"
  ],
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "scripts/dummy.js",
        "scripts/jquery.min.js",
        "scripts/te.js",
        "scripts/data-export.js",
        "scripts/content.js"
      ],
      "all_frames": true
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "page_action": {
    "default_title": "Mr. Table (by TYO lab)",
    "default_popup": "popup.html"
  },
  "manifest_version": 2
}