AniList Modifier

Add scores to AniList activity feed

Wat is AniList Modifier?

AniList Modifier is een Chrome-extensie ontwikkeld door Gregor Maclaine, en de belangrijkste functie is "Add scores to AniList activity feed".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie AniList Modifier

Download AniList Modifier-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Chrome extension for Anilist that adds score information to activity feed, such as when someone completes or drops a show or manga. The extension allows all scoring formats such as number based, stars, or smiley faces.                    

Basisinformatie over de Extensie

Naam AniList Modifier AniList Modifier
ID knclmpfhlbdlndgplhbnpajhpjmklfpi
Officiële URL https://chromewebstore.google.com/detail/anilist-modifier/knclmpfhlbdlndgplhbnpajhpjmklfpi
Beschrijving Add scores to AniList activity feed
Bestandsgrootte 67.9 KB
Aantal Installaties 27
Huidige Versie 1.2.1
Laatst Bijgewerkt 2023-07-30
Publicatiedatum 2023-07-08
Beoordeling 4.67/5 Totaal 3 Beoordelingen
Ontwikkelaar Gregor Maclaine
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/gregormaclaine/AniListModifier
Ondersteunde Talen en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AniList Modifier",
    "description": "Add scores to AniList activity feed",
    "version": "1.2.1",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/anilist.co\/*"
            ],
            "js": [
                "injection.js"
            ],
            "css": []
        }
    ],
    "icons": {
        "48": "icons\/48.png",
        "128": "icons\/128.png",
        "256": "icons\/256.png",
        "512": "icons\/512.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup\/index.html",
        "default_icon": {
            "48": "icons\/48.png"
        }
    },
    "permissions": [
        "storage"
    ]
}