HGLT

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

Apa itu HGLT?

HGLT adalah ekstensi Chrome yang dikembangkan oleh Unknown, dan fitur utamanya adalah "HGLT is designed primarily to learn languages ​​while visiting websites, but could be used to learn or remember many other things.…".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi HGLT

Unduh file ekstensi HGLT dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama HGLT HGLT
ID mlddpeniehkpamjgppiinfopkojahbpm
URL Resmi https://chromewebstore.google.com/detail/hglt/mlddpeniehkpamjgppiinfopkojahbpm
Deskripsi HGLT is designed primarily to learn languages ​​while visiting websites, but could be used to learn or remember many other things.…
Ukuran File 75.74 KB
Jumlah Instalasi 71
Versi Saat Ini 0.0.7
Terakhir Diperbarui 2020-02-29
Tanggal Publikasi 2020-02-28
Pengembang Unknown
Tipe Pembayaran free
Bahasa yang Didukung 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
    }
}