No rick-roll

This extension warns you every time you click on a link that could involve a rick-roll.

No rick-roll란 무엇입니까?

No rick-roll은(는) level 8에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension warns you every time you click on a link that could involve a rick-roll."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

No rick-roll 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This chrome extension makes it so that if you try to open a youtube video with is a rickroll you are going to be prompted and asked if you want to continue or cancel. If you install it you will decrease the chance of being rickrolled.

This is an open-source extension so if you want to contribute and make it beter you can do so. Here is the GitHub link: https://github.com/Tim194/No-rick-roll                    

확장 프로그램 기본 정보

이름 No rick-roll No rick-roll
ID oljmncocnnpghpdnmdffphhcanpgmkok
공식 URL https://chromewebstore.google.com/detail/no-rick-roll/oljmncocnnpghpdnmdffphhcanpgmkok
설명 This extension warns you every time you click on a link that could involve a rick-roll.
파일 크기 13.38 KB
설치 횟수 613
현재 버전 1.0.0
최근 업데이트 2021-05-18
출시 날짜 2021-01-18
평점 5.00/5 총 7 개의 평점
개발자 level 8
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "No rick-roll",
    "version": "1.0.0",
    "description": "This extension warns you every time you click on a link that could involve a rick-roll.",
    "permissions": [
        "https:\/\/youtube.com\/*"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ]
}