Rickroll Extension

Goes through all the links on a webpage and changes some of them to rickrolls.

Rickroll Extension란 무엇입니까?

Rickroll Extension은(는) Matthew Bevins에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Goes through all the links on a webpage and changes some of them to rickrolls."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Rickroll Extension 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension is just for fun! Fool yourself on your own computer, or prank your friends by putting it on their computers!

FEATURES:
-Browser will change some of the links on any webpage to Rickrolls.
-You can choose what percentage of links are changed to Rickrolls by the extension.
-Cheat mode will allow you to easily tell what links are rickrolls.
-You can toggle cheat mode and the extension itself on the popup.

UPDATES:
v1.1 (10/6/2020): Added on/off button
v1.2 (12/10/2020): Fixed on/off button and added icon
v1.2.1 (4/22/2021): Made Rickroll links appear more frequently
v2.0 (4/28/2021): Added cheat mode and updated popup UI
v2.0.1 (5/31/2022): Removed console.log messages in code and verified extension works
v2.1 (6/11/2022): Switched to manifest v3.0 and made extension smoother in general
v2.2 (7/3/2022): Added sliders
v2.3 (9/7/2022): Added Rickroll frequency slider                    

확장 프로그램 기본 정보

이름 Rickroll Extension Rickroll Extension
ID ljkcmgibdnmdjdfpbggohpophnkiajfm
공식 URL https://chromewebstore.google.com/detail/rickroll-extension/ljkcmgibdnmdjdfpbggohpophnkiajfm
설명 Goes through all the links on a webpage and changes some of them to rickrolls.
파일 크기 418 KB
설치 횟수 8,000
현재 버전 2.30
최근 업데이트 2022-09-14
출시 날짜 2020-10-06
평점 4.00/5 총 16 개의 평점
개발자 Matthew Bevins
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/MatthewRBevins/Rickroll-Extension
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Rickroll Extension",
    "author": "MatthewBevins",
    "description": "Goes through all the links on a webpage and changes some of them to rickrolls.",
    "version": "2.30",
    "icons": {
        "16": "Images\/16.png",
        "48": "Images\/48.png",
        "128": "Images\/128.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_title": "Rickroll Extension"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}