Youtube date hider

This extension hide 'Youtube' video publish date

Youtube date hider란 무엇입니까?

Youtube date hider은(는) Arnaud Wilbrod에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension hide 'Youtube' video publish date"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        This extension allows you to hide the publication date of videos, anywhere on Youtube.

•  If you are tired of seeing the date
•  If it makes you feel old 
•  If you want to play the game "What year is this video from".
•  If you want to make a joke to your friends
Then this extension is made for you ;-)

This extension allows you to hide the date on :
•  The home page
•  Under the video itself
•  In the search pages
•  On the channel pages                    

확장 프로그램 기본 정보

이름 Youtube date hider Youtube date hider
ID gaohfhcgopflcfimblmjknocmedimepk
공식 URL https://chromewebstore.google.com/detail/youtube-date-hider/gaohfhcgopflcfimblmjknocmedimepk
설명 This extension hide 'Youtube' video publish date
파일 크기 33.54 KB
설치 횟수 152
현재 버전 2.1
최근 업데이트 2024-01-10
출시 날짜 2021-02-10
평점 4.80/5 총 5 개의 평점
개발자 Arnaud Wilbrod
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://www.wilbrod.com/datehider.html
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Youtube date hider",
    "description": "This extension hide 'Youtube' video publish date",
    "version": "2.1",
    "icons": {
        "16": "\/assets\/icons\/icon16.png",
        "32": "\/assets\/icons\/icon32.png",
        "48": "\/assets\/icons\/icon48.png",
        "128": "\/assets\/icons\/icon128.png"
    },
    "action": {
        "default_icon": {
            "16": "\/assets\/icons\/icon16.png",
            "32": "\/assets\/icons\/icon32.png",
            "48": "\/assets\/icons\/icon48.png",
            "128": "\/assets\/icons\/icon128.png"
        }
    },
    "background": {
        "service_worker": "\/ExtensionBackground.js"
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "all_frames": false,
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "\/ExtensionContent.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "tabs",
        "unlimitedStorage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "*"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "extension_ids": []
        }
    ]
}