PS Replay Downloader
Download batches of Pokémon Showdown replays with ease.
Что такое PS Replay Downloader?
PS Replay Downloader - это расширение Chrome, разработанное Statsugiri, и его основная функция - "Download batches of Pokémon Showdown replays with ease.".
Снимки экрана расширения
Скачать файл CRX расширения PS Replay Downloader
Скачайте файлы расширений PS Replay Downloader в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
PS Replay Downloader is an open-source Chrome Extension for batch downloading Pokémon Showdown replays.
Start a new session through the extension and select the replays you'd like to download. Download all your replays with one-click. Export your replays to CSV or text for replay analysis or archival purposes.
* Quick-start guide on using PS Replay Downloader:
https://github.com/Statsugiri/PsReplayDownloader#instructions
* FAQ:
https://github.com/Statsugiri/PsReplayDownloader#faq
* Support the project
https://ko-fi.com/statsugiri Основная информация о расширении
| Название | |
| ID | kjpnphkfldkejiagdadolfehjiaaknkm |
| Официальный URL | https://chromewebstore.google.com/detail/ps-replay-downloader/kjpnphkfldkejiagdadolfehjiaaknkm |
| Описание | Download batches of Pokémon Showdown replays with ease. |
| Размер файла | 312 KB |
| Количество установок | 161 |
| Текущая Версия | 1.1.1 |
| Последнее Обновление | 2023-03-18 |
| Дата публикации | 2023-03-16 |
| Рейтинг | 5.00/5 Всего 1 оценок |
| Разработчик | Statsugiri |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/Statsugiri/PsReplayDownloader |
| URL страницы помощи | https://ko-fi.com/statsugiri |
| Поддерживаемые языки | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "PS Replay Downloader",
"version": "1.1.1",
"description": "Download batches of Pok\u00e9mon Showdown replays with ease.",
"permissions": [
"storage"
],
"host_permissions": [
"*:\/\/replay.pokemonshowdown.com\/*"
],
"content_scripts": [
{
"matches": [
"*:\/\/replay.pokemonshowdown.com\/*"
],
"js": [
"content.js"
]
}
],
"action": {
"default_icon": {
"16": "images\/assets\/ps_replay_downloader_16.png",
"48": "images\/assets\/ps_replay_downloader_48.png",
"128": "images\/assets\/ps_replay_downloader_128.png"
},
"default_title": "PS Replay Downloader",
"default_popup": "popup.html"
},
"manifest_version": 3
} | |