JacaScript

JacaScript

This extension set the comments of Gizmodo Brazil to the top because people usually prefer to see the comments first anyway,right ?

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "JacaScript",
  "description": "This extension set the comments of Gizmodo Brazil to the top because people usually prefer to see the comments first anyway,right ?",
  "version": "1.1",
  "browser_action": {
    "default_icon": "goldtrophy.png"
  },
  "permissions": [
    "activeTab",
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.gizmodo.uol.com.br/*"
      ],
      "js": [
        "script.js"
      ]
    }
  ]
}