Randomized Rickroller

Every time you click, there is a 1 in a million chance of it rickrolling you! (In a new tab, of course) by Noah Refsland

Что такое Randomized Rickroller?

Randomized Rickroller - это расширение Chrome, разработанное noahrefsland, и его основная функция - "Every time you click, there is a 1 in a million chance of it rickrolling you! (In a new tab, of course) by Noah Refsland".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Randomized Rickroller

Скачайте файлы расширений Randomized Rickroller в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        With this extension, there is a 1 in 1 million chance by default to get rickrolled every click. You can change the value if you click on the extension. Feel free to prank your friends or family with this.

(Feel free to donate at https://www.noahrefsland.com/patreon)

* I am not the owner of 'Never Gonna Give You Up'. All rights go to the song's current owners and original producer Rick Astley.                    

Основная информация о расширении

Название Randomized Rickroller Randomized Rickroller
ID kaaikelefhdlgfmpijphkomeopienjgi
Официальный URL https://chromewebstore.google.com/detail/randomized-rickroller/kaaikelefhdlgfmpijphkomeopienjgi
Описание Every time you click, there is a 1 in a million chance of it rickrolling you! (In a new tab, of course) by Noah Refsland
Размер файла 218 KB
Количество установок 76
Текущая Версия 1.0
Последнее Обновление 2023-02-02
Дата публикации 2023-02-01
Разработчик noahrefsland
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Randomized Rickroller",
    "description": "Every time you click, there is a 1 in a million chance of it rickrolling you! (In a new tab, of course) by Noah Refsland",
    "icons": {
        "640": "logo.png"
    },
    "version": "1.0",
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "gui.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}