Lichess Tweaked Challenge Accept
A vue.js web extension that allows choosing by challenges based on certain conditions
什么是Lichess Tweaked Challenge Accept?
Lichess Tweaked Challenge Accept是由lmprogg开发的Chrome扩展程序,该扩展的主要功能是“A vue.js web extension that allows choosing by challenges based on certain conditions”。
扩展截图
下载Lichess Tweaked Challenge Accept扩展crx文件
下载Lichess Tweaked Challenge Accept扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This is a lichess web page extension that lets you finetune what kind of chess challenges you accept beyond the options lichess gives you. You can combine rules that should be accepted and nest them. Currently available: Rating, number of encounters, team membership, number of encounters today, timecontrol, color, variant, user id, rated.
扩展基本信息
名称 | Lichess Tweaked Challenge Accept |
ID | jpfhmamgaagjocnkfonhdeflhhnchokd |
官方URL | https://chromewebstore.google.com/detail/lichess-tweaked-challenge/jpfhmamgaagjocnkfonhdeflhhnchokd |
简介 | A vue.js web extension that allows choosing by challenges based on certain conditions |
文件大小 | 301 KB |
安装次数 | 17 |
当前版本 | 1.6.0 |
更新时间 | 2021-05-08 |
上架时间 | 2020-07-26 |
评分 | 5.00/5 共1次评分 |
开发者 | lmprogg |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/lmanzke/lichess-conditional-challenge |
帮助页面URL | https://github.com/lmanzke/lichess-conditional-challenge |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Lichess Tweaked Challenge Accept", "description": "A vue.js web extension that allows choosing by challenges based on certain conditions", "version": "1.6.0", "manifest_version": 2, "icons": { "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "browser_action": { "default_title": "Team Challenge" }, "content_scripts": [ { "matches": [ "*:\/\/*.lichess.org\/*", "*:\/\/lichess.org\/*" ], "js": [ "challenge\/challenge.js" ], "css": [ "challenge\/challenge.css" ] } ], "permissions": [ "storage" ], "background": { "scripts": [ "background.js" ] }, "options_ui": { "page": "options\/options.html", "chrome_style": false, "open_in_tab": true }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |