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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } ] } |