HTML Table Auto Sort

HTML Table Auto Sort

Clicking on <th> tags reorders rows of an HTML table in ascending/descending order.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "HTML Table Auto Sort",
  "icons": {
    "32": "icon.png",
    "128": "icon-large.png"
  },
  "version": "1.7",
  "manifest_version": 2,
  "description": "Clicking on <th> tags reorders rows of an HTML table in ascending/descending order.",
  "browser_action": {
    "default_icon": "icon.png"
  },
  "background": {
    "scripts": [
      "eventPage.js"
    ],
    "persistent": false
  },
  "permissions": [
    "activeTab",
    "debugger",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "table-sort.js"
      ]
    }
  ]
}