Chinese Notes Chinese-English Dictionary

The dictionary can be used to lookup Chinese words by simplified or traditional Chinese or reverse lookup from English equivalent.

Chinese Notes Chinese-English Dictionaryคืออะไร?

Chinese Notes Chinese-English Dictionary เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://chinesenotes.com และคุณลักษณะหลักของมันคือ "The dictionary can be used to lookup Chinese words by simplified or traditional Chinese or reverse lookup from English equivalent."

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

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Chinese Notes Chinese-English Dictionary

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

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

                        The extension adds a context menu when text on a web page is selected so that term can be used to lookup and entry in the Chinese dictionary. You can lookup terms with simplified or traditional Chinese or pinyin, or reverse lookup with an English equivalent.                    

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

ชื่อ Chinese Notes Chinese-English Dictionary Chinese Notes Chinese-English Dictionary
ID pamihenokjbcmbinloihppkjplfdifak
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/chinese-notes-chinese-eng/pamihenokjbcmbinloihppkjplfdifak
คำอธิบาย The dictionary can be used to lookup Chinese words by simplified or traditional Chinese or reverse lookup from English equivalent.
ขนาดไฟล์ 8.53 MB
จำนวนการติดตั้ง 39
เวอร์ชันปัจจุบัน 0.0.5
อัปเดตครั้งล่าสุด 2021-05-08
วันที่เผยแพร่ 2021-04-26
ผู้พัฒนา https://chinesenotes.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://chinesenotes.com
URL หน้าช่วยเหลือ https://github.com/alexamies/chinesenotes-dart/blob/master/chrome-ext/README.md
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Chinese Notes Chinese-English Dictionary",
    "short_name": "Chinese Notes",
    "description": "The dictionary can be used to lookup Chinese words by simplified or traditional Chinese or reverse lookup from English equivalent.",
    "author": "Alex Amies",
    "version": "0.0.5",
    "manifest_version": 3,
    "permissions": [
        "activeTab",
        "contextMenus"
    ],
    "background": {
        "service_worker": "serviceworker_ext.dart.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_title": "Chinese Notes Chinese-English Dictionary",
        "default_icon": {
            "16": "\/images\/icon16.png",
            "32": "\/images\/icon32.png",
            "48": "\/images\/icon48.png",
            "128": "\/images\/icon128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "exclude_matches": [
                "https:\/\/*.google.com\/*",
                "https:\/\/*.youtube.com\/*",
                "https:\/\/*.facebook.com\/*",
                "https:\/\/*.amazon.com\/*",
                "https:\/\/*.yahoo.com\/*",
                "https:\/\/*.reddit.com\/*",
                "https:\/\/*.twitter.com\/*",
                "https:\/\/*.ebay.com\/*",
                "https:\/\/*.instagram.com\/*",
                "https:\/\/*.cnn.com\/*",
                "https:\/\/*.zoom.us\/*",
                "https:\/\/*.craigslist.org\/*",
                "https:\/\/*.weather.com\/*",
                "https:\/\/*.stackoverflow.com\/*"
            ],
            "css": [
                "styles.css"
            ],
            "js": [
                "content.dart.js"
            ]
        }
    ],
    "icons": {
        "16": "\/images\/icon16.png",
        "32": "\/images\/icon32.png",
        "48": "\/images\/icon48.png",
        "128": "\/images\/icon128.png"
    }
}