AniList Modifier
Add scores to AniList activity feed
AniList Modifierとは何ですか?
AniList ModifierはGregor Maclaineによって開発されたChromeの拡張機能で、その主な機能は「Add scores to AniList activity feed」です。
拡張機能のスクリーンショット
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. 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
]
} | |