DGText2Area
DailyGammon: Replace Text Line inputs with Area inputs. Replace board with scalable version. Save reminders for a match.
什么是DGText2Area?
DGText2Area是由djidjadji开发的Chrome扩展程序,该扩展的主要功能是“DailyGammon: Replace Text Line inputs with Area inputs. Replace board with scalable version. Save reminders for a match.”。
扩展截图
下载DGText2Area扩展crx文件
下载DGText2Area扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
At DailyGammon.com you are able to send other players a Quick Message. It only allows messages of maximum 80 characters. This extension replaces the single input line to a multi line input area. It is then possible to send a few lines of text as a Quick Message. If you receive a Quick Message the reply is filled in with the previous text where each line is prefixed with a few characters. This prefix can be changed on the option page. On the options page you can select to replace the original board with a scalable vector version. Enter a value for the "Scale board" option. Vales > 0 will replace the board. You can now set and remove a reminder text for a certain match. Like "Double the cube". These reminders are stored in the browser LocalStorage for the site. One reminder line for a match.
扩展基本信息
名称 | DGText2Area |
ID | falmnkmhomkpphcpkdflemlahipdnemp |
官方URL | https://chromewebstore.google.com/detail/dgtext2area/falmnkmhomkpphcpkdflemlahipdnemp |
简介 | DailyGammon: Replace Text Line inputs with Area inputs. Replace board with scalable version. Save reminders for a match. |
文件大小 | 20.7 KB |
安装次数 | 172 |
当前版本 | 1.1.6 |
更新时间 | 2013-11-20 |
上架时间 | 2013-11-19 |
评分 | 5.00/5 共10次评分 |
开发者 | djidjadji |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "DGText2Area", "version": "1.1.6", "manifest_version": 2, "description": "DailyGammon: Replace Text Line inputs with Area inputs. Replace board with scalable version. Save reminders for a match.", "options_page": "options.html", "background": { "scripts": [ "background.js" ] }, "icons": { "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*.dailygammon.com\/bg\/user\/*" ], "js": [ "dgtext2area.js" ], "run_at": "document_end" }, { "matches": [ "http:\/\/*.dailygammon.com\/bg\/move\/*", "http:\/\/*.dailygammon.com\/bg\/game\/*", "http:\/\/*.dailygammon.com\/bg\/nextgame" ], "js": [ "svgboard.js", "reminder.js" ], "run_at": "document_end" }, { "matches": [ "http:\/\/*.dailygammon.com\/bg\/move\/*", "http:\/\/*.dailygammon.com\/bg\/nextgame" ], "js": [ "dgtext2area.js", "format_reply.js", "win_reply.js" ], "run_at": "document_end" } ] } |