Pivot Genie

Pivot Genie

Pivot Genie converts the HTML flat table into a pivot on just a right-clicking on any table.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Pivot Genie",
  "version": "1.3",
  "description": "Pivot Genie converts the HTML flat table into a pivot on just a right-clicking on any table. ",
  "background": {
    "scripts": [
      "./jscripts/eventPage.js"
    ],
    "persistent": false
  },
  "permissions": [
    "tabs",
    "contextMenus",
    "*://*/*"
  ],
  "icons": {
    "16": "./icons/pivotgenie16.png",
    "48": "./icons/pivotgenie32.png",
    "128": "./icons/pivotgenie128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "all_frames": true,
      "js": [
        "./jscripts/pivotgenie_cs.js",
        "./jscripts/jquery-1.12.3.min.js",
        "./T2PLibs/jquery-ui.min.js",
        "./T2PLibs/d3.min.js",
        "./T2PLibs/d3.min.js",
        "./T2PLibs/jquery.ui.touch-punch.min.js",
        "./T2PLibs/jquery.csv-0.71.min.js",
        "./T2PLibs/c3.min.js",
        "./T2PLibs/dist/pivot.js",
        "./T2PLibs/dist/export_renderers.js",
        "./T2PLibs/dist/d3_renderers.js",
        "./T2PLibs/dist/c3_renderers.js"
      ],
      "css": [
        "./css/pivotgenie_cs.css",
        "./T2PLibs/c3.min.css",
        "./T2PLibs/dist/pivot.css"
      ]
    }
  ],
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "46.0.0"
    }
  }
}