DGText2Area

DailyGammon: Replace Text Line inputs with Area inputs. Replace board with scalable version. Save reminders for a match.

DGText2Area là gì?

DGText2Area là một tiện ích mở rộng Chrome được phát triển bởi djidjadji, và tính năng chính của nó là "DailyGammon: Replace Text Line inputs with Area inputs. Replace board with scalable version. Save reminders for a match.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng DGText2Area

Tải xuống các tệp mở rộng DGText2Area dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên DGText2Area DGText2Area
ID falmnkmhomkpphcpkdflemlahipdnemp
URL Chính Thức https://chromewebstore.google.com/detail/dgtext2area/falmnkmhomkpphcpkdflemlahipdnemp
Mô tả DailyGammon: Replace Text Line inputs with Area inputs. Replace board with scalable version. Save reminders for a match.
Kích Thước Tệp 20.7 KB
Số Lần Cài Đặt 172
Phiên Bản Hiện Tại 1.1.6
Cập Nhật Lần Cuối 2013-11-20
Ngày Phát Hành 2013-11-19
Đánh Giá 5.00/5 Tổng số 10 Đánh Giá
Nhà Phát Triển djidjadji
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}