AdSkip- iQIYI

AdSkip- iQIYI

The plug-in can skip the ads at the beginning of iQiyi video and bid farewell to the annoyance of watching ads.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "version": "1.0.2",
  "author": "quancy",
  "manifest_version": 2,
  "name": "__MSG_extension_name__",
  "description": "__MSG_extension_description__",
  "default_locale": "zh_CN",
  "action": {
    "default_icon": {
      "64": "icons/adIcon64.png",
      "128": "icons/adIcon128.png",
      "256": "icons/adIcon256.png",
      "512": "icons/adIcon512.png"
    },
    "default_popup": "popup.html",
    "default_title": "__MSG_extension_name__"
  },
  "icons": {
    "64": "icons/adIcon64.png",
    "128": "icons/adIcon128.png",
    "256": "icons/adIcon256.png",
    "512": "icons/adIcon512.png"
  },
  "permissions": [
    "storage",
    "tabs",
    "webRequest"
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "js/domStart.js"
      ],
      "matches": [
        "http://*.iqiyi.com/*",
        "https://*.iqiyi.com/*",
        "http://*.iq.com/*",
        "https://*.iq.com/*"
      ],
      "run_at": "document_start"
    },
    {
      "all_frames": true,
      "js": [
        "js/domEnd.js"
      ],
      "matches": [
        "http://*.iqiyi.com/*",
        "https://*.iqiyi.com/*",
        "http://*.iq.com/*",
        "https://*.iq.com/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}