AL Search, for AniList
AniList quick search in your browser.
什么是AL Search, for AniList?
AL Search, for AniList是由Theo Costantini开发的Chrome扩展程序,该扩展的主要功能是“AniList quick search in your browser.”。
扩展截图
下载AL Search, for AniList扩展crx文件
下载AL Search, for AniList扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
AL Search is an unofficial browser extension for AniList which adds multiple feature to help you quickly search information on AniList. This extension includes: - An integrated search interface - Contextual menus on selected text - Web integration on popular sites (AnimeLab, Crunchyroll, Funimation, Hidive, Wakanim and ADN)
扩展基本信息
名称 | AL Search, for AniList |
ID | cfgahmhilacehicbomiciimpemjhpalc |
官方URL | https://chromewebstore.google.com/detail/al-search-for-anilist/cfgahmhilacehicbomiciimpemjhpalc |
简介 | AniList quick search in your browser. |
文件大小 | 363 KB |
安装次数 | 1,050 |
当前版本 | 1.3.7 |
更新时间 | 2022-03-19 |
上架时间 | 2020-06-14 |
评分 | 5.00/5 共2次评分 |
开发者 | Theo Costantini |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://yellowfish085.github.io/al-search/ |
帮助页面URL | https://github.com/YellowFish085/al-search/issues |
隐私政策页面URL | https://yellowfish085.github.io/al-search |
支持的语言 | en,fr |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "author": "Theo Costantini", "name": "__MSG_APP_Name__", "description": "__MSG_APP_Description__", "homepage_url": "https:\/\/github.com\/YellowFish085\/al-search", "icons": { "48": "logo-48.png", "96": "logo-96.png", "128": "logo-128-padded.png" }, "default_locale": "en", "permissions": [ "contextMenus", "identity", "notifications", "storage", "*:\/\/anilist.co\/*", "*:\/\/graphql.anilist.co\/*" ], "commands": { "_execute_browser_action": [] }, "browser_action": { "default_icon": "logo-48.png", "default_popup": "index.html" }, "background": { "scripts": [ "js\/background\/background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/www.crunchyroll.com\/*" ], "js": [ "js\/content\/crunchyroll.js" ] }, { "matches": [ "*:\/\/www.funimation.com\/*" ], "js": [ "js\/content\/funimation.js" ] }, { "matches": [ "*:\/\/www.wakanim.tv\/*" ], "js": [ "js\/content\/wakanim.js" ] }, { "matches": [ "*:\/\/www.animelab.com\/*" ], "js": [ "js\/content\/animelab.js" ] }, { "matches": [ "*:\/\/www.hidive.com\/*" ], "js": [ "js\/content\/hidive.js" ] }, { "matches": [ "*:\/\/animedigitalnetwork.fr\/*" ], "js": [ "js\/content\/adn.js" ] } ], "version": "1.3.7" } |