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

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

扩展使用说明

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