Company of Farts

Company of Farts

This extension will help you navigate the horrors that are CoH2 forums

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Company of Farts",
  "description": "This extension will help you navigate the horrors that are CoH2 forums",
  "version": "0.8",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "options_ui": {
    "page": "options/options.html",
    "chrome_style": true,
    "open_in_tab": true
  },
  "page_action": {
    "default_icon": "img/coh2.png",
    "default_popup": "popup/popup.html",
    "default_title": "Company of Farts"
  },
  "icons": {
    "128": "img/coh2.png"
  },
  "permissions": [
    "storage",
    "declarativeContent",
    "https://www.coh2.org/"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.coh2.org/topic/*"
      ],
      "css": [
        "inpage.css"
      ],
      "js": [
        "lib/jquery.js",
        "common/data.js",
        "common/dictionary.js",
        "common/farts.js",
        "coh2filter.js"
      ]
    }
  ]
}