MCP SRG Mapper

MCP SRG Mapper

Applies MCP mappings to SRG named code snippets on github repos and paste services.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "MCP SRG Mapper",
  "version": "0.2.3",
  "author": "bspkrs, Lunatrius",
  "manifest_version": 2,
  "description": "Applies MCP mappings to SRG named code snippets on github repos and paste services.",
  "homepage_url": "https://github.com/bspkrs/MCP-SRG-Mapper",
  "icons": {
    "16": "icons/icon16.png",
    "24": "icons/icon24.png",
    "48": "icons/icon48.png",
    "64": "icons/icon64.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "en",
  "permissions": [
    "storage",
    "unlimitedStorage",
    "http://files.minecraftforge.net/maven/de/oceanlabs/mcp/*",
    "http://export.mcpbot.bspk.rs/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://github.com/*/MinecraftForge/*",
        "https://github.com/*/FML/*",
        "https://gist.github.com/*",
        "https://paste.feed-the-beast.com/view/*",
        "http://paste.feed-the-beast.com/view/*",
        "http://openeye.openmods.info/crashes/*",
        "https://openeye.openmods.info/crashes/*",
        "https://paste.kde.org/*",
        "http://paste.kde.org/*",
        "https://pastebin.com/*",
        "http://pastebin.com/*",
        "https://paste.ee/p/*",
        "http://paste.ee/p/*",
        "http://pastie.org/*"
      ],
      "css": [
        "css/toastr.min.css",
        "css/chosen.min.css"
      ],
      "js": [
        "js/jquery-2.1.1.min.js",
        "js/chosen.jquery.min.js",
        "js/toastr.min.js",
        "src/inject.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "img/*.png"
  ],
  "background": {
    "scripts": [
      "js/jszip.min.js",
      "src/background.js"
    ],
    "persistent": false
  }
}