Youtube RSS

This plugin adds the RSS button back to Youtube.

Youtube RSS란 무엇입니까?

Youtube RSS은(는) rtdegrandis에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This plugin adds the RSS button back to Youtube."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Youtube RSS 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Simply add the extension to your browser, click the RSS button, and paste the link into your RSS Reader.  The link is copied to the clipboard when clicked.

Youtube occasionally changes how the site works, so if the plugin is broken PLEASE contact me and I can work on a fix.  Or create an issue on github.  

If you have any issues, report them on the GitHub Repo.                    

확장 프로그램 기본 정보

이름 Youtube RSS Youtube RSS
ID cmkhdimgaondkfghelifknnpicdajeim
공식 URL https://chromewebstore.google.com/detail/youtube-rss/cmkhdimgaondkfghelifknnpicdajeim
설명 This plugin adds the RSS button back to Youtube.
파일 크기 126 KB
설치 횟수 516
현재 버전 1.0.7
최근 업데이트 2022-10-31
출시 날짜 2020-04-07
평점 3.14/5 총 7 개의 평점
개발자 rtdegrandis
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://degrandis.github.io/Youtube-rss-chrome-plugin/
도움말 페이지 URL https://github.com/DeGrandis/Youtube-rss-chrome-plugin/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube RSS",
    "version": "1.0.7",
    "manifest_version": 3,
    "description": "This plugin adds the RSS button back to Youtube.",
    "homepage_url": "https:\/\/degrandis.github.io\/Youtube-rss-chrome-plugin\/",
    "icons": {
        "16": "icons\/icon16.png",
        "19": "icons\/icon19.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "host_permissions": [
        "https:\/\/www.youtube.com\/watch?v=*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "css": [
                "css\/styles.css"
            ],
            "js": [
                "js\/jquery\/jquery-3.5.1.js",
                "src\/inject\/contentScript.js"
            ]
        }
    ]
}