Rick Rollette

See how many links you can click before getting Rickrolled.

Rick Rollette là gì?

Rick Rollette là một tiện ích mở rộng Chrome được phát triển bởi westbycs, và tính năng chính của nó là "See how many links you can click before getting Rickrolled.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Rick Rollette

Tải xuống các tệp mở rộng Rick Rollette dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Rick Rollette Rick Rollette
ID bonjmjpebjhpdhpnfkkfohhgccjdddco
URL Chính Thức https://chrome.google.com/webstore/detail/rick-rollette/bonjmjpebjhpdhpnfkkfohhgccjdddco
Mô tả See how many links you can click before getting Rickrolled.
Kích Thước Tệp 92.95 KB
Số Lần Cài Đặt 87
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2020-03-23
Ngày Phát Hành 2020-03-23
Nhà Phát Triển westbycs
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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\/*"
            ]
        }
    ]
}