UCSD Podcast Silence Fast-Forward

UCSD Podcast Silence Fast-Forward

Help skip silence in UCSD podcasts.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "UCSD Podcast Silence Fast-Forward",
  "description": "Help skip silence in UCSD podcasts.",
  "version": "0.6",
  "icons": {
    "128": "ucsd-icon-128.png"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage",
    "activeTab"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "table.html",
        "scripts/*",
        "styles/*"
      ],
      "matches": [
        "https://podcast.ucsd.edu/*"
      ],
      "use_dyanmics_url": true
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "https://podcast.ucsd.edu/watch/*"
      ],
      "js": [
        "scripts/browser_action.js",
        "scripts/helper_functions.js"
      ]
    }
  ],
  "manifest_version": 3
}