Roblox Video Search

Roblox Video Search

Allows users to search for gameplay videos of Roblox games through this extension made by robloxreviewofficial

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Roblox Video Search",
  "version": "0.0.2",
  "description": "Allows users to search for gameplay videos of Roblox games through this extension made by robloxreviewofficial",
  "manifest_version": 2,
  "icons": {
    "16": "icon16x16.png",
    "48": "icon48x48.png",
    "128": "icon128x128.png"
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.roblox.com/games/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "permissions": [
    "tabs"
  ]
}