HGLT

HGLT is designed primarily to learn languages ​​while visiting websites, but could be used to learn or remember many other things.…

HGLT là gì?

HGLT là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "HGLT is designed primarily to learn languages ​​while visiting websites, but could be used to learn or remember many other things.…".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng HGLT 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

                        HGLT is designed primarily to learn languages ​​while visiting websites, but could be used to learn or remember many other things. HGLT has no servers behind or databases, so it does not store any kind of information, personal or not. We do not use any external API, we open tabs and copy the texts and links as you could do.

When you select a word or phrase, this happens:

- HGLT opens two pinned tabs (not focused) and looks for the translation, definition, and images of the word or phrase for you.
- Then, HGLT puts all the collected results in a tooltip near the selection, along with the pronunciation.

When HGTL is active and available on certain web site you will be able to:

- See all the information collected in a tooltip near the selection (you could decide what information will show the tooltip).
- In that tooltip, we could also hear the pronunciation of that word or phrase.
- You could choose between different translations, different definitions and different images. 
- You can store that word or phrase previously selected and the information collected by HGLT.
- You can also study those elements using the same algorithm as Memrise, Duolingo or Ankidroid.
- In the study section, you can also test your pronunciation against the original pronunciation.

Settings

We can choose what to see in the tooltip and what languages to use. Depends on what you want to study you could change the settings to feel comfortable.  

Stored elements

Once you decide that certain word or phrase deserves to be stored because you think that word or phrase is relevant to remember, you should click on "Add _the word or phrase_ to the store". You can access the stored elements by clicking on the tooltip (after one element was added) or in the popup. In the stored elements page, you can remove items and see all the stored information. So far information is stored locally, this means information is not shared between browsers but I'm testing a new way to share info between browsers. 

Study

Since we store elements, a badge appears in the popup menu.
Each day, a badge warns you about the items available to study that day. In each study session, you should evaluate how well you remembered that element and the algorithm decides when it will be the best time to revisit that element.

I hope this extension is useful to you as much as it is to me.                    

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

Tên HGLT HGLT
ID mlddpeniehkpamjgppiinfopkojahbpm
URL Chính Thức https://chromewebstore.google.com/detail/hglt/mlddpeniehkpamjgppiinfopkojahbpm
Mô tả HGLT is designed primarily to learn languages ​​while visiting websites, but could be used to learn or remember many other things.…
Kích Thước Tệp 75.74 KB
Số Lần Cài Đặt 71
Phiên Bản Hiện Tại 0.0.7
Cập Nhật Lần Cuối 2020-02-29
Ngày Phát Hành 2020-02-28
Nhà Phát Triển Unknown
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en,es-419
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "HGLT",
    "short_name": "Translate, learn, study and memorize languages",
    "version": "0.0.7",
    "default_locale": "en",
    "browser_action": {
        "default_icon": "images\/inactive_128.png",
        "default_popup": "popup\/popup.html"
    },
    "icons": {
        "16": "images\/inactive_16.png",
        "48": "images\/inactive_48.png",
        "128": "images\/inactive_128.png"
    },
    "permissions": [
        "storage",
        "activeTab",
        "tabs",
        "contextMenus",
        "https:\/\/*\/",
        "http:\/\/*\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "exclude_matches": [
                "*:\/\/translate.google.com\/*",
                "*:\/\/chrome.google.com\/*"
            ],
            "js": [
                "content\/highlightstoredElemets.js",
                "content\/markers.js",
                "content\/HgltElement.js",
                "content\/highligter\/highlighter.js",
                "content\/mainContent.js"
            ],
            "css": [
                "content\/highligter\/hightlighter.css"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "https:\/\/translate.google.com\/*"
            ],
            "js": [
                "content\/translation\/translation.js"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "https:\/\/www.google.com\/*"
            ],
            "js": [
                "content\/imageSearch\/imageSearch.js"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "content\/highligter\/*"
    ],
    "background": {
        "page": "background\/background.html",
        "persistent": false
    }
}