Old Roblox Logo

Replace the new Roblox logo with the old one.

Что такое Old Roblox Logo?

Old Roblox Logo - это расширение Chrome, разработанное Sego, и его основная функция - "Replace the new Roblox logo with the old one.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Old Roblox Logo

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

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

                        Replaces the new Roblox logo on most Roblox websites with the (2018-2022) logo using CSS and JavaScript                    

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

Название Old Roblox Logo Old Roblox Logo
ID pcfflnmlgphemomedafckbgmeakoflic
Официальный URL https://chromewebstore.google.com/detail/old-roblox-logo/pcfflnmlgphemomedafckbgmeakoflic
Описание Replace the new Roblox logo with the old one.
Размер файла 71.24 KB
Количество установок 1,658
Текущая Версия 1.0.4
Последнее Обновление 2022-09-27
Дата публикации 2022-09-14
Рейтинг 4.64/5 Всего 14 оценок
Разработчик Sego
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Old Roblox Logo",
    "version": "1.0.4",
    "description": "Replace the new Roblox logo with the old one.",
    "manifest_version": 3,
    "author": "Sego",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.roblox.com\/*",
                "https:\/\/web.roblox.com\/*"
            ],
            "run_at": "document_start",
            "css": [
                "css\/rblx.css"
            ],
            "js": [
                "js\/rblx.js"
            ]
        },
        {
            "matches": [
                "https:\/\/corp.roblox.com\/*"
            ],
            "run_at": "document_start",
            "css": [
                "css\/corp.css"
            ],
            "js": [
                "js\/corp.js"
            ]
        },
        {
            "matches": [
                "https:\/\/blog.roblox.com\/*"
            ],
            "run_at": "document_start",
            "css": [
                "css\/blog.css"
            ],
            "js": [
                "js\/blog.js"
            ]
        },
        {
            "matches": [
                "https:\/\/corporate.roblox.com\/*"
            ],
            "run_at": "document_start",
            "css": [
                "css\/corpo.css"
            ],
            "js": [
                "js\/corpo.js"
            ]
        },
        {
            "matches": [
                "https:\/\/en.help.roblox.com\/*"
            ],
            "run_at": "document_start",
            "js": [
                "js\/support.js"
            ]
        },
        {
            "matches": [
                "https:\/\/careers.roblox.com\/*"
            ],
            "js": [
                "js\/careers.js"
            ]
        }
    ],
    "icons": {
        "16": "icon\/16.png",
        "32": "icon\/32.png",
        "48": "icon\/48.png",
        "128": "icon\/128.png"
    }
}