MyAnimeList-AnimeFLV link

Go directly to AnimeFLV from MyAnimeList!

Что такое MyAnimeList-AnimeFLV link?

MyAnimeList-AnimeFLV link - это расширение Chrome, разработанное dries, и его основная функция - "Go directly to AnimeFLV from MyAnimeList!".

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

screenshot
screenshot

Скачать файл CRX расширения MyAnimeList-AnimeFLV link

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

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

                        Ever thought it is extremely boring to manually browse AnimeFLV for the anime you just saw in MyAnimeList?

With this simple extension you will be able to go directly to the AnimeFLV page of the anime you are browsing in MyAnimeList, just with a simple click.                    

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

Название MyAnimeList-AnimeFLV link MyAnimeList-AnimeFLV link
ID gklifkmbpacjmgachgjepglfkomdepfi
Официальный URL https://chromewebstore.google.com/detail/myanimelist-animeflv-link/gklifkmbpacjmgachgjepglfkomdepfi
Описание Go directly to AnimeFLV from MyAnimeList!
Размер файла 62.63 KB
Количество установок 59
Текущая Версия 1.0
Последнее Обновление 2022-07-13
Дата публикации 2022-07-12
Разработчик dries
Электронная почта [email protected]
Тип оплаты free
URL страницы политики конфиденциальности https://www.driescode.dev/legal.html
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "MyAnimeList-AnimeFLV link",
    "description": "Go directly to AnimeFLV from MyAnimeList!",
    "version": "1.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/myanimelist.net\/anime\/*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "icons": {
        "16": "\/images\/icon16.png",
        "32": "\/images\/icon32.png",
        "48": "\/images\/icon48.png",
        "128": "\/images\/icon128.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/icon16.png",
            "32": "\/images\/icon32.png",
            "48": "\/images\/icon48.png",
            "128": "\/images\/icon128.png"
        }
    },
    "permissions": [
        "tabs"
    ]
}