AniList Modifier

Add scores to AniList activity feed

什么是AniList Modifier?

AniList Modifier是由Gregor Maclaine开发的Chrome扩展程序,该扩展的主要功能是“Add scores to AniList activity feed”。

扩展截图

screenshot

下载AniList Modifier扩展crx文件

下载AniList Modifier扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 AniList Modifier AniList Modifier
ID knclmpfhlbdlndgplhbnpajhpjmklfpi
官方URL https://chromewebstore.google.com/detail/anilist-modifier/knclmpfhlbdlndgplhbnpajhpjmklfpi
简介 Add scores to AniList activity feed
文件大小 67.9 KB
安装次数 27
当前版本 1.2.1
更新时间 2023-07-30
上架时间 2023-07-08
评分 4.67/5 共3次评分
开发者 Gregor Maclaine
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/gregormaclaine/AniListModifier
支持的语言 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"
    ]
}