Nekudot

Add `nekudot' to hebrew text.

Nekudotคืออะไร?

Nekudot เป็นส่วนขยายของ Chrome ที่พัฒนาโดย giladamar และคุณลักษณะหลักของมันคือ "Add `nekudot' to hebrew text."

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

screenshot
screenshot

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

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

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

                        If you're learning Hebrew and don't know how to pronounce new words without nekudot, this tool is for you.
With this extension, just highlight the Hebrew text and then click the extension's icon. The Hebrew text will be replaced to include nekudot.

It is not perfect, but it performs really well especially if you are looking to pronounce Sephardi, or Israeli, Hebrew where Kamatz and Pataḥ sound the same.

Known issues:
* "I'm not seeing a Nekudot icon where the extensions are"
This is likely because chrome has elected not to show it. You can change this by clicking on the puzzle-piece shaped icon on the top right and pinning the Nekudot icon to the toolbar.
* This does not work on Google Docs. This would require making a Google Workspace addon (or require logins and require unreasonable permissions) in addition to this chrome extension and well, nope.

Please support further development and show your appreciation at paypal.me/GiladAmar.
If not, no worries, it's free and will always be. 

This extension is open-source at github.com/GiladAmar/Nekudot. So if you're looking to learn how to build a Chrome extension, or use TensorFlow.js in one, please take a peak.

This wouldn't be possible without the work done by Elazar Gershuni and Yuval Pinter in arxiv.org/abs/2105.05209 who graciously let me use their LSTM model. Thank you, it's a really cool and original use of machine learning.                    

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

ชื่อ Nekudot Nekudot
ID lifcgpfijhjloceldomdfbkjghkdnenk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/nekudot/lifcgpfijhjloceldomdfbkjghkdnenk
คำอธิบาย Add `nekudot' to hebrew text.
ขนาดไฟล์ 20.48 MB
จำนวนการติดตั้ง 335
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2023-10-01
วันที่เผยแพร่ 2021-06-07
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา giladamar
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/GiladAmar/Nekudot
URL หน้าช่วยเหลือ https://github.com/GiladAmar/Nekudot/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Nekudot",
    "version": "1.1",
    "description": "Add `nekudot' to hebrew text.",
    "homepage_url": "https:\/\/github.com\/GiladAmar",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "model\/*"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "16": "\/images\/aleph_16.png",
            "32": "\/images\/aleph_32.png",
            "48": "\/images\/aleph_48.png",
            "128": "\/images\/aleph_128.png"
        }
    },
    "icons": {
        "16": "\/images\/aleph_16.png",
        "32": "\/images\/aleph_32.png",
        "48": "\/images\/aleph_48.png",
        "128": "\/images\/aleph_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ]
}