MyAnimeList-AnimeFLV link

Go directly to AnimeFLV from MyAnimeList!

Vad är MyAnimeList-AnimeFLV link?

MyAnimeList-AnimeFLV link är en Chrome-tillägg utvecklad av dries, och dess huvudfunktion är "Go directly to AnimeFLV from MyAnimeList!".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner MyAnimeList-AnimeFLV link-förlängningens CRX-fil

Ladda ner MyAnimeList-AnimeFLV link-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn MyAnimeList-AnimeFLV link MyAnimeList-AnimeFLV link
ID gklifkmbpacjmgachgjepglfkomdepfi
Officiell webbadress https://chromewebstore.google.com/detail/myanimelist-animeflv-link/gklifkmbpacjmgachgjepglfkomdepfi
Beskrivning Go directly to AnimeFLV from MyAnimeList!
Filstorlek 62.63 KB
Antal Installationer 59
Aktuell Version 1.0
Senast Uppdaterad 2022-07-13
Publiceringsdatum 2022-07-12
Utvecklare dries
E-post [email protected]
Betalningssätt free
URL till Sekretesspolicy Sidan https://www.driescode.dev/legal.html
Stödda Språk 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"
    ]
}