AniList Extras
Adds a few additional features to AniList.
Что такое AniList Extras?
AniList Extras - это расширение Chrome, разработанное pilar6195, и его основная функция - "Adds a few additional features to AniList.".
Снимки экрана расширения
Скачать файл CRX расширения AniList Extras
Скачайте файлы расширений AniList Extras в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
- Adds character data from MyAnimeList since most of the time AniList does not have a complete character list.
- Adds OP/ED data from MyAnimeList.
- Toggle to display character/staff lists as grid (default) or as a list.
- Adds Anilist link to MyAnimeList pages.
- Adds the total amount of following, followers, forum threads, and forum comments a user has to the social tab of the user's profile.
More info can be found on the Github repo: https://github.com/pilar6195/AniList-Extras Основная информация о расширении
| Название | |
| ID | ahcnhicbflgjhemogkbiknblbogeemih |
| Официальный URL | https://chromewebstore.google.com/detail/anilist-extras/ahcnhicbflgjhemogkbiknblbogeemih |
| Описание | Adds a few additional features to AniList. |
| Размер файла | 15.96 KB |
| Количество установок | 1,000 |
| Текущая Версия | 1.2.0 |
| Последнее Обновление | 2019-10-22 |
| Дата публикации | 2019-10-22 |
| Рейтинг | 4.45/5 Всего 11 оценок |
| Разработчик | pilar6195 |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| URL страницы помощи | https://github.com/pilar6195/AniList-Extras |
| URL страницы политики конфиденциальности | https://pilar.moe/privacy |
| Поддерживаемые языки | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "AniList Extras",
"description": "Adds a few additional features to AniList.",
"version": "1.2.0",
"minimum_chrome_version": "60.0.3112",
"icons": {
"128": "icon128.png"
},
"permissions": [
"https:\/\/anilist.co\/*",
"https:\/\/graphql.anilist.co\/*",
"https:\/\/api.jikan.moe\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/anilist.co\/*",
"https:\/\/myanimelist.net\/*"
],
"js": [
"polyfill.js",
"anilist-extras.user.js"
],
"run_at": "document_start"
}
]
} | |