RoLinker

RoLinker

Adds a hypertext reference to game card tiles on the Roblox games page so that you can open them in new tabs.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "RoLinker",
  "version": "1.1.0.2",
  "description": "Adds a hypertext reference to game card tiles on the Roblox games page so that you can open them in new tabs.",
  "icons": {
    "16": "/icons/icon16.png",
    "48": "/icons/icon48.png",
    "128": "/icons/icon128.png"
  },
  "content_scripts": [
    {
      "js": [
        "/js/jquery.js"
      ],
      "matches": [
        "*://*.roblox.com/*"
      ],
      "all_frames": true,
      "run_at": "document_start"
    },
    {
      "js": [
        "/js/linker.js"
      ],
      "matches": [
        "*://*.roblox.com/*"
      ],
      "all_frames": true,
      "run_at": "document_end"
    }
  ],
  "manifest_version": 2
}