Raccoony WebExtension

Raccoony WebExtension

A WebExtension for adding shiny features to art websites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Raccoony WebExtension",
  "version": "1.2.5",
  "manifest_version": 2,
  "description": "A WebExtension for adding shiny features to art websites.",
  "icons": {
    "16": "icon-16.png",
    "32": "icon-32.png",
    "64": "icon-64.png",
    "128": "icon-128.png"
  },
  "background": {
    "scripts": [
      "browser-polyfill.js",
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.furaffinity.net/*",
        "*://*.inkbunny.net/*",
        "*://*.weasyl.com/*",
        "*://*.sofurry.com/*",
        "*://*.deviantart.com/*",
        "*://*.furrynetwork.com/*",
        "*://*.e621.net/*",
        "*://*.patreon.com/*",
        "*://*.hiccears.com/*",
        "*://*.aryion.com/*",
        "*://*.shorpy.com/*",
        "*://*.gearfetishx.com/*",
        "*://*.hentai-foundry.com/*"
      ],
      "js": [
        "browser-polyfill.js",
        "page_inject.js"
      ],
      "css": [
        "overlayUi.css"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "delayload.html",
    "*.png"
  ],
  "homepage_url": "http://raccoony.thornvalley.com/",
  "options_ui": {
    "page": "options.html"
  },
  "permissions": [
    "storage",
    "downloads",
    "contextMenus",
    "activeTab",
    "<all_urls>"
  ]
}