i18next-key-show

i18next-key-show

i18next-key-showคืออะไร?

i18next-key-show เป็นส่วนขยายของ Chrome ที่พัฒนาโดย sushi และคุณลักษณะหลักของมันคือ "i18next-key-show"

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย i18next-key-show

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

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

                        A plug-in that is very convenient to view the i18next multi-language native key

The main function
1. After clicking q on the keyboard, you can view all the corresponding keys of multi-language translations
2. After clicking on the keyboard w, check the key corresponding to the corresponding translation, and you can see the corresponding translation and the corresponding key more intuitively (applicable to the case that the current translation is relatively small)
3. After clicking e, check the key corresponding to the corresponding translation (compared to the scene with more keys) - check the specific icon and check the corresponding language
4. Support viewing the translated content in a specific modal

Why do you need to install?
1. Every time the multi-language project needs to be adjusted, the product will find a specific development to verify the key corresponding to the specific translation for the uncertain translation. For the high communication cost between the two parties, this plug-in can help you to be more intuitive. find the corresponding key

How to access?
3. If you also use i18next technology to process multiple languages, you only need to expose your corresponding i18n object on the window, for example: window.__I18N__ = i18n                    

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

ชื่อ i18next-key-show i18next-key-show
ID jfanoaoakoofokmlbnoebbpninbobeod
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/i18next-key-show/jfanoaoakoofokmlbnoebbpninbobeod
คำอธิบาย i18next-key-show
ขนาดไฟล์ 571 KB
จำนวนการติดตั้ง 21
เวอร์ชันปัจจุบัน 1.0.1
อัปเดตครั้งล่าสุด 2022-08-08
วันที่เผยแพร่ 2022-08-05
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา sushi
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "i18next-key-show",
    "description": "i18next-key-show",
    "version": "1.0.1",
    "action": {
        "default_title": "i18next-key-show",
        "default_icon": "assets\/logo.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "assets\/logo.png",
        "48": "assets\/logo.png",
        "128": "assets\/logo.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/*",
                "js\/inject.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}