Rick Rollette

See how many links you can click before getting Rickrolled.

Apa itu Rick Rollette?

Rick Rollette adalah ekstensi Chrome yang dikembangkan oleh westbycs, dan fitur utamanya adalah "See how many links you can click before getting Rickrolled.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Rick Rollette

Unduh file ekstensi Rick Rollette dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Rick Rollette Rick Rollette
ID bonjmjpebjhpdhpnfkkfohhgccjdddco
URL Resmi https://chrome.google.com/webstore/detail/rick-rollette/bonjmjpebjhpdhpnfkkfohhgccjdddco
Deskripsi See how many links you can click before getting Rickrolled.
Ukuran File 92.95 KB
Jumlah Instalasi 87
Versi Saat Ini 1.0
Terakhir Diperbarui 2020-03-23
Tanggal Publikasi 2020-03-23
Pengembang westbycs
Tipe Pembayaran free
Bahasa yang Didukung 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\/*"
            ]
        }
    ]
}