Rosetta Code for All Languages

Rosetta Code for All Languages

When you're in the language category and click on an example problem, you directly go to that language's example of it.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Rosetta Code for All Languages",
  "version": "1.0.0.1",
  "short_name": "RCAL",
  "description": "When you're in the language category and click on an example problem, you directly go to that language's example of it.",
  "permissions": [
    "tabs"
  ],
  "icons": {
    "48": "48x48.png",
    "128": "128x128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://rosettacode.org/wiki/Category:*"
      ],
      "js": [
        "js/jquery/jquery.js",
        "src/bg/background.js"
      ],
      "run_at": "document_end"
    }
  ],
  "manifest_version": 2
}