Rick Rollette

See how many links you can click before getting Rickrolled.

什麼是Rick Rollette?

Rick Rollette是由westbycs開發的Chrome擴展程式,該擴展的主要功能是“See how many links you can click before getting Rickrolled.”。

擴展截圖

screenshot

下載Rick Rollette擴展crx文件

下載Rick Rollette擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This extension turns all hyperlinks from google.com and wikipedia.org into a game of roulette. You can select your chance of getting Rickrolled (0%-100%) and then start clicking links.

See who can click the most links before getting redirected to Rick Astley's iconic "Never Gonna Give You Up" music video.                    

擴展基本資訊

名稱 Rick Rollette Rick Rollette
ID bonjmjpebjhpdhpnfkkfohhgccjdddco
官方網址 https://chrome.google.com/webstore/detail/rick-rollette/bonjmjpebjhpdhpnfkkfohhgccjdddco
簡介 See how many links you can click before getting Rickrolled.
檔案大小 92.95 KB
安裝次數 87
目前版本 1.0
更新時間 2020-03-23
上架時間 2020-03-23
開發者 westbycs
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Rick Rollette",
    "version": "1.0",
    "description": "See how many links you can click before getting Rickrolled.",
    "permissions": [
        "declarativeContent",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/rick16.png",
            "32": "images\/rick32.png",
            "48": "images\/rick48.png",
            "128": "images\/rick128.png"
        }
    },
    "icons": {
        "16": "images\/rick16.png",
        "32": "images\/rick32.png",
        "48": "images\/rick48.png",
        "128": "images\/rick128.png"
    },
    "manifest_version": 2,
    "content_scripts": [
        {
            "js": [
                "roller.js"
            ],
            "matches": [
                "*:\/\/*.google.com\/*",
                "*:\/\/*.wikipedia.org\/*"
            ]
        }
    ]
}