Listen Notes for Chrome - podcast search

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

什么是Listen Notes for Chrome - podcast search?

Listen Notes for Chrome - podcast search是由https://www.listennotes.com开发的Chrome扩展程序,该扩展的主要功能是“The Official Listen Notes Chrome Extension. Search podcasts by topics. Suggest podcasts for websites.”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Listen Notes for Chrome - podcast search扩展crx文件

下载Listen Notes for Chrome - podcast search扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Search all podcasts and episodes right from your Chrome browser. Suggest podcasts for the website of current tab.
 
The fastest way to search podcasts:
- Search directly in the address bar (omnibar):  L + 
- Select text on a web page and right click to search from the context menu
- Search in the popup menu from the toolbar
 
If you have any questions, email us: [email protected]                    

扩展基本信息

名称 Listen Notes for Chrome - podcast search Listen Notes for Chrome - podcast search
ID mgfcbojdgmjgafiihonneempohjhdjge
官方URL https://chromewebstore.google.com/detail/listen-notes-for-chrome-p/mgfcbojdgmjgafiihonneempohjhdjge
简介 The Official Listen Notes Chrome Extension. Search podcasts by topics. Suggest podcasts for websites.
文件大小 355 KB
安装次数 4,382
当前版本 2020.1.11
更新时间 2020-01-11
上架时间 2020-01-11
评分 5.00/5 共2次评分
开发者 https://www.listennotes.com
电子邮箱 [email protected]
付费类型 free
隐私政策页面URL https://www.listennotes.com/privacy
支持的语言 en
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"
        }
    ]
}