HGLT

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

什麼是HGLT?

HGLT是由Unknown開發的Chrome擴展程式,該擴展的主要功能是“HGLT is designed primarily to learn languages ​​while visiting websites, but could be used to learn or remember many other things.…”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載HGLT擴展crx文件

下載HGLT擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 HGLT HGLT
ID mlddpeniehkpamjgppiinfopkojahbpm
官方網址 https://chromewebstore.google.com/detail/hglt/mlddpeniehkpamjgppiinfopkojahbpm
簡介 HGLT is designed primarily to learn languages ​​while visiting websites, but could be used to learn or remember many other things.…
檔案大小 75.74 KB
安裝次數 71
目前版本 0.0.7
更新時間 2020-02-29
上架時間 2020-02-28
開發者 Unknown
付費類型 free
支援的語言 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
    }
}