Listen Notes for Chrome - podcast search

Listen Notes for Chrome - podcast search

The Official Listen Notes Chrome Extension. Search podcasts by topics. Suggest podcasts for websites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "The Official Listen Notes Chrome Extension. Search podcasts by topics. Suggest podcasts for websites.",
  "version": "2020.1.11",
  "name": "Listen Notes for Chrome - podcast search",
  "short_name": "ListenNotes",
  "omnibox": {
    "keyword": "l"
  },
  "background": {
    "page": "background.html",
    "persistent": false
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "Listen Notes: best podcast search engine",
    "default_icon": "icon-48.png"
  },
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "permissions": [
    "contextMenus",
    "tabs",
    "storage",
    "https://*.listennotes.com/"
  ],
  "externally_connectable": {
    "matches": [
      "*://*.listennotes.com/*"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.listennotes.com/*"
      ],
      "js": [
        "content.bundle.js"
      ],
      "run_at": "document_end"
    }
  ]
}