Globalization Test Assistant

Right-click context menu to help with G11N testing

Globalization Test Assistantคืออะไร?

Globalization Test Assistant เป็นส่วนขยายของ Chrome ที่พัฒนาโดย songjiang320 และคุณลักษณะหลักของมันคือ "Right-click context menu to help with G11N testing"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Globalization Test Assistant

ดาวน์โหลดไฟล์ส่วนขยาย Globalization Test Assistant ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Product globalization testing is quite time consuming as testers have to repeatedly enter different set of international character for different languages, locales, browsers and screen resolutions. The most common method to do so is to copy/paste those characters or enter them manually via keyboard input. We aim to address this issue by providing a browser plug-in that contains all common test data and functions in a right-click context menu. It works on input fields, text areas, content editable DIVs in Chrome and Firefox.
    •With it, user can keep the problematic i18n test data handy and access them conveniently without 3rd party library or software dependencies. 
    •It allows user to customize the context menu with config files easily. 
    •It also allows user to change locales and screen resolutions, access common globalization reference websites very quickly. 
This tool will help improve the efficiency and speed of Globalization testing and also provide extensibility to add other function such as providing a Bugzilla bug template.
Usage:
    1.After installation, restart the browser.
    2.Right-click on any editable item on the page, and choose a charset, it will be inserted into the editable field.

You can also customize GTA menu and value by uploading .json configuration file, below is an example. First, please copy below paragraph to a text editor and save to .json. You can upload the .json file by clicking "Customize..." in GTA. Then you will see "SUB MENU 1" and "SUB MENU2" in the context menu of GTA. 

//Example.json 
{
               "SUB MENU 1":"I am the value of SUB MENU 1",
               "SUB MENU 2":" FIRST LINE: I am the 1st line of \"SUB MENU 2\".\n SECOND LINE: I am the 2nd line of \"SUB MENU 2\"."
}                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Globalization Test Assistant Globalization Test Assistant
ID plgafmkjcpcmgonlegkbnmkafmemhmho
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/globalization-test-assist/plgafmkjcpcmgonlegkbnmkafmemhmho
คำอธิบาย Right-click context menu to help with G11N testing
ขนาดไฟล์ 25.78 KB
จำนวนการติดตั้ง 24
เวอร์ชันปัจจุบัน 1.3
อัปเดตครั้งล่าสุด 2017-04-17
วันที่เผยแพร่ 2017-04-17
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา songjiang320
ประเภทการชำระเงิน free
ภาษาที่รองรับ zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Globalization Test Assistant",
    "short_name": "GTA",
    "description": "Right-click context menu to help with G11N testing",
    "version": "1.3",
    "permissions": [
        "contextMenus",
        "storage"
    ],
    "background": {
        "scripts": [
            "extension.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "manifest_version": 2,
    "icons": {
        "128": "g11nGTI.png",
        "16": "g11nGTI-16.png"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}