Copy video url

Copy video url

Copy video url

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "persistent": true,
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "js/modules/jquery.min.js",
        "js/youtube.js"
      ],
      "matches": [
        "*://www.youtube.com/*"
      ]
    }
  ],
  "description": "Copy video url",
  "icons": {
    "16": "images/smplayer16.png",
    "32": "images/smplayer32.png",
    "48": "images/smplayer48.png",
    "128": "images/smplayer128.png"
  },
  "manifest_version": 2,
  "name": "Copy video url",
  "options_ui": {
    "chrome_style": true,
    "page": "html/options.html"
  },
  "page_action": {
    "default_icon": {
      "16": "images/smplayer16.png",
      "32": "images/smplayer32.png",
      "48": "images/smplayer48.png",
      "128": "images/smplayer128.png"
    },
    "default_title": "Copy video url"
  },
  "permissions": [
    "declarativeContent",
    "activeTab",
    "webRequest",
    "storage",
    "contextMenus",
    "*://*/*m3u8*",
    "*://www.twitch.tv/*",
    "*://www.youtube.com/watch*",
    "*://tv.naver.com/*",
    "*://sports.news.naver.com/tv/index.nhn*",
    "*://vod.afreecatv.com/*"
  ],
  "version": "1.4"
}