Ultimate Rickroller

Changes links at random into rickrolls and other fun and annoying memes! Annoy yourself or your friends!

Что такое Ultimate Rickroller?

Ultimate Rickroller - это расширение Chrome, разработанное IncognitoStudios, и его основная функция - "Changes links at random into rickrolls and other fun and annoying memes! Annoy yourself or your friends!".

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

screenshot
screenshot
screenshot

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

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

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

                        The most advanced Rickrolling extension out there, with various roll options, including a custom roll, which can all be adjusted to different roll probabilities.

⭐⭐⭐SPECIAL FEATURES:⭐⭐⭐
Multiple Meme Types
Changes values without a page refresh
Custom URL input
Visually appealing UI

Version 1.1 Notes (21/02/2021):
- Added more rolls                    

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

Название Ultimate Rickroller Ultimate Rickroller
ID mbldmpdimcodkhimlehfhhfecnngmipp
Официальный URL https://chromewebstore.google.com/detail/ultimate-rickroller/mbldmpdimcodkhimlehfhhfecnngmipp
Описание Changes links at random into rickrolls and other fun and annoying memes! Annoy yourself or your friends!
Размер файла 513 KB
Количество установок 2,266
Текущая Версия 1.2
Последнее Обновление 2021-03-19
Дата публикации 2020-10-21
Рейтинг 4.22/5 Всего 9 оценок
Разработчик IncognitoStudios
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Ultimate Rickroller",
    "version": "1.2",
    "description": "Changes links at random into rickrolls and other fun and annoying memes! Annoy yourself or your friends!",
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "page.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "128": "images\/rick128.png",
            "16": "images\/rick16.png",
            "32": "images\/rick32.png",
            "48": "images\/rick48.png"
        }
    },
    "icons": {
        "128": "images\/rick128.png",
        "16": "images\/rick16.png",
        "32": "images\/rick32.png",
        "48": "images\/rick48.png"
    },
    "manifest_version": 2
}