Pedahack

Pedahack

Automatically answers most peda.net forms

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Pedahack",
  "version": "1.30",
  "description": "Automatically answers most peda.net forms",
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "64": "icon64.png",
    "128": "icon128.png",
    "256": "icon256.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "icon16.png",
      "32": "icon32.png",
      "64": "icon64.png",
      "128": "icon128.png",
      "256": "icon256.png"
    },
    "default_title": "Pedahack"
  },
  "content_scripts": [
    {
      "matches": [
        "*://peda.net/*"
      ],
      "js": [
        "pedahack.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "bg.js"
    ]
  }
}