Rick Rollette

See how many links you can click before getting Rickrolled.

Qu'est-ce que Rick Rollette ?

Rick Rollette est une extension Chrome développée par westbycs, et sa fonction principale est "See how many links you can click before getting Rickrolled.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Rick Rollette

Téléchargez les fichiers d'extension Rick Rollette au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Rick Rollette Rick Rollette
ID bonjmjpebjhpdhpnfkkfohhgccjdddco
URL Officiel https://chrome.google.com/webstore/detail/rick-rollette/bonjmjpebjhpdhpnfkkfohhgccjdddco
Description See how many links you can click before getting Rickrolled.
Taille du Fichier 92.95 KB
Nombre d'Installations 87
Version Actuelle 1.0
Dernière Mise à Jour 2020-03-23
Date de Publication 2020-03-23
Développeur westbycs
Type de Paiement free
Langues Prises en Charge 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\/*"
            ]
        }
    ]
}