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文件

下载Rickroll Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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