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. 拡張機能の基本情報
| 名前 | |
| 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"
}
]
} | |