AniList Modifier

Add scores to AniList activity feed

What is AniList Modifier?

AniList Modifier is a Chrome extension developed by Gregor Maclaine, and its main feature is "Add scores to AniList activity feed".

Extension Screenshots

screenshot

Download AniList Modifier Extension CRX File

Download AniList Modifier extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name AniList Modifier AniList Modifier
ID knclmpfhlbdlndgplhbnpajhpjmklfpi
Official URL https://chromewebstore.google.com/detail/anilist-modifier/knclmpfhlbdlndgplhbnpajhpjmklfpi
Description Add scores to AniList activity feed
File Size 67.9 KB
Installation Count 27
Current Version 1.2.1
Last Updated 2023-07-30
Publish Date 2023-07-08
Rating 4.67/5 Total 3 Ratings
Developer Gregor Maclaine
Email [email protected]
Payment Type free
Extension Website https://github.com/gregormaclaine/AniListModifier
Supported Languages 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"
    ]
}