Tabulazer - Table Filter and Sorter

Tabulazer - Table Filter and Sorter

Filter, sort, page and style any existing HTML table using the Tabulator JS library.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Tabulazer - Table Filter and Sorter",
  "version": "0.7.5",
  "manifest_version": 2,
  "description": "Filter, sort, page and style any existing HTML table using the Tabulator JS library.",
  "default_locale": "en",
  "homepage_url": "http://chrome-table-manager.ryadel.com",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "browser_action": {
    "default_icon": "icons/icon19.png",
    "default_title": "Tabulazer",
    "default_popup": "src/browser_action/browser_action.html"
  },
  "background": {
    "scripts": [
      "src/background/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [],
      "js": [
        "src/content/js/content.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "contextMenus",
    "storage"
  ],
  "web_accessible_resources": [
    "lib/*/*",
    "src/common/*/*"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval' 'unsafe-inline'; object-src 'self'"
}