Rick Rollette

See how many links you can click before getting Rickrolled.

Vad är Rick Rollette?

Rick Rollette är en Chrome-tillägg utvecklad av westbycs, och dess huvudfunktion är "See how many links you can click before getting Rickrolled.".

Tilläggsskärmbilder

screenshot

Ladda ner Rick Rollette-förlängningens CRX-fil

Ladda ner Rick Rollette-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Rick Rollette Rick Rollette
ID bonjmjpebjhpdhpnfkkfohhgccjdddco
Officiell webbadress https://chrome.google.com/webstore/detail/rick-rollette/bonjmjpebjhpdhpnfkkfohhgccjdddco
Beskrivning See how many links you can click before getting Rickrolled.
Filstorlek 92.95 KB
Antal Installationer 87
Aktuell Version 1.0
Senast Uppdaterad 2020-03-23
Publiceringsdatum 2020-03-23
Utvecklare westbycs
Betalningssätt free
Stödda Språk 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\/*"
            ]
        }
    ]
}