asmr mode

asmr mode

This extension will cancel the sound of youtube ads and replace the sound with asmr sounds.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "asmr mode",
  "description": "This extension will cancel the sound of youtube ads and replace the sound with asmr sounds.",
  "version": "0.1.0",
  "manifest_version": 2,
  "icons": {
    "16": "media/icon/icon_small.png",
    "32": "media/icon/icon_small.png",
    "48": "media/icon/icon_big.png",
    "128": "media/icon/icon_big.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "options_page": "options.html",
  "permissions": [
    "tabs",
    "http://*/",
    "https://*/"
  ],
  "browser_action": {
    "default_popup": "popup.html"
  }
}