MyAnimeList-AnimeFLV link

Go directly to AnimeFLV from MyAnimeList!

Hvad er MyAnimeList-AnimeFLV link?

MyAnimeList-AnimeFLV link er en Chrome-udvidelse udviklet af dries, og dens hovedfunktion er "Go directly to AnimeFLV from MyAnimeList!".

Udvidelsesskærmbilleder

screenshot
screenshot

Download MyAnimeList-AnimeFLV link-udvidelses-CRX-fil

Download MyAnimeList-AnimeFLV link-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn MyAnimeList-AnimeFLV link MyAnimeList-AnimeFLV link
ID gklifkmbpacjmgachgjepglfkomdepfi
Officiel URL https://chromewebstore.google.com/detail/myanimelist-animeflv-link/gklifkmbpacjmgachgjepglfkomdepfi
Beskrivelse Go directly to AnimeFLV from MyAnimeList!
Filstørrelse 62.63 KB
Antal Installationer 59
Nuværende Version 1.0
Senest Opdateret 2022-07-13
Udgivelsesdato 2022-07-12
Udvikler dries
E-mail [email protected]
Betalingsmetode free
URL til Fortrolighedspolitik Side https://www.driescode.dev/legal.html
Understøttede Sprog 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"
    ]
}