ignore X-Frame-Options

ignore X-Frame-Options

解决谷歌等页面无法在iframe中引用的问题

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ignore X-Frame-Options",
  "version": "1.0",
  "description": "解决谷歌等页面无法在iframe中引用的问题",
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "manifest_version": 2
}