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.…"입니다.
확장 프로그램 스크린샷
HGLT 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
ID | mlddpeniehkpamjgppiinfopkojahbpm |
공식 URL | 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 } } |