Trêu trọc bằng cách chuyển hướng website

Trêu trọc bằng cách chuyển hướng website

Một trò chơi thú vị giúp trêu trọc bạn bè bằng cách chuyển hướng đến website khác.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "version": "1.0.0",
  "manifest_version": 2,
  "description": "__MSG_appDescription__",
  "icons": {
    "16": "images/16.png",
    "128": "images/128.png"
  },
  "default_locale": "vi",
  "background": {
    "scripts": [
      "libs/polyfill.min.js"
    ]
  },
  "permissions": [],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "scripts/libs/jquery.min.js",
        "scripts/contentscript.js"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'"
}