ScoreSaber Easy Installer

Adds a super easy way to download songs straight from ScoreSaber.

Что такое ScoreSaber Easy Installer?

ScoreSaber Easy Installer - это расширение Chrome, разработанное https://cobular.com, и его основная функция - "Adds a super easy way to download songs straight from ScoreSaber.".

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

screenshot
screenshot

Скачать файл CRX расширения ScoreSaber Easy Installer

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

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

                        Gone are the days of finding a cool song on ScoreSaber, but then having to go to SaberSaver and spend a few minutes searching for the right song by the right mapper. This small extension adds a one-click download button to ScoreSaber, making it that much more convient to install your favorite BeatSaber maps!

If you find any bugs, please create a GitHub issue at https://github.com/Cobular/ScoreSaverExtention/issues and I'll do my best to fix it quickly.

(Sorry, this is the SEO bit, gotta help the Google Bot figure out what this is :P )
Beat Saber, BeatSaber, VR, ScoreSaber, SaberSaver, BeastSaver                    

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

Название ScoreSaber Easy Installer ScoreSaber Easy Installer
ID gpghflbiabfangjnelpihcokfmanppgi
Официальный URL https://chromewebstore.google.com/detail/scoresaber-easy-installer/gpghflbiabfangjnelpihcokfmanppgi
Описание Adds a super easy way to download songs straight from ScoreSaber.
Размер файла 25.56 KB
Количество установок 638
Текущая Версия 2.2
Последнее Обновление 2022-08-08
Дата публикации 2020-04-11
Рейтинг 5.00/5 Всего 5 оценок
Разработчик https://cobular.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/Cobular/ScoreSaverExtention
URL страницы помощи https://github.com/Cobular/ScoreSaverExtention/issues
URL страницы политики конфиденциальности https://cobular.notion.site/Privacy-Policy-277b8e3e484e445193f01fb142529a69
Поддерживаемые языки en,cs,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_title__",
    "version": "2.2",
    "description": "__MSG_description__",
    "manifest_version": 2,
    "permissions": [
        "*:\/\/*.scoresaber.com\/leaderboard\/*",
        "*:\/\/api.beatsaver.com\/*"
    ],
    "icons": {
        "16": ".\/icons\/icon_16.png",
        "32": ".\/icons\/icon_32.png",
        "64": ".\/icons\/icon_64.png",
        "128": ".\/icons\/icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.scoresaber.com\/*"
            ],
            "js": [
                "main.js"
            ],
            "run_at": "document_end"
        }
    ],
    "default_locale": "en",
    "web_accessible_resources": [
        "download-icon.svg"
    ]
}