Speedrun Site Extensions

Extends speedrun.com to provide more options for the user

Что такое Speedrun Site Extensions?

Speedrun Site Extensions - это расширение Chrome, разработанное Unlocked, и его основная функция - "Extends speedrun.com to provide more options for the user".

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

screenshot

Скачать файл CRX расширения Speedrun Site Extensions

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

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

                        This is an extension built for a myself and a small group of people. I'm publishing it so that other people can utilize its features if they would find them helpful, but feature requests will mostly be ignored.

Features:
Custom context menu that allows users to filter columns within a leaderboard (e.g. by the platform a player is on) by value.                    

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

Название Speedrun Site Extensions Speedrun Site Extensions
ID inijpjipcpjjnpkomdnpijcepggmbkfi
Официальный URL https://chromewebstore.google.com/detail/speedrun-site-extensions/inijpjipcpjjnpkomdnpijcepggmbkfi
Описание Extends speedrun.com to provide more options for the user
Размер файла 7.75 KB
Количество установок 51
Текущая Версия 1.0.0
Последнее Обновление 2020-01-16
Дата публикации 2020-01-11
Разработчик Unlocked
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Speedrun Site Extensions",
    "version": "1.0.0",
    "icons": {
        "128": "Icons\/icon.png"
    },
    "description": "Extends speedrun.com to provide more options for the user",
    "author": "Unlocked",
    "permissions": [
        "https:\/\/speedrun.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/speedrun.com\/*",
                "https:\/\/www.speedrun.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "contextmenu.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "content\/*.js"
    ]
}