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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
        }
    ]
}