MyAnimeList-AnimeFLV link

Go directly to AnimeFLV from MyAnimeList!

Was ist MyAnimeList-AnimeFLV link?

MyAnimeList-AnimeFLV link ist eine Chrome-Erweiterung, die von dries entwickelt wurde, und ihr Hauptmerkmal ist "Go directly to AnimeFLV from MyAnimeList!".

Erweiterungsscreenshots

screenshot
screenshot

MyAnimeList-AnimeFLV link-Erweiterungs-CRX-Datei herunterladen

Laden Sie MyAnimeList-AnimeFLV link-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name MyAnimeList-AnimeFLV link MyAnimeList-AnimeFLV link
ID gklifkmbpacjmgachgjepglfkomdepfi
Offizielle URL https://chromewebstore.google.com/detail/myanimelist-animeflv-link/gklifkmbpacjmgachgjepglfkomdepfi
Beschreibung Go directly to AnimeFLV from MyAnimeList!
Dateigröße 62.63 KB
Installationsanzahl 59
Aktuelle Version 1.0
Letztes Update 2022-07-13
Veröffentlichungsdatum 2022-07-12
Entwickler dries
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://www.driescode.dev/legal.html
Unterstützte Sprachen 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"
    ]
}