GRE Words Highlighter

Scans and highlights the GRE words in a webpage on demand. Contains over 2000 words from three popular lists

GRE Words Highlighterとは何ですか?

GRE Words HighlighterはAditya Bhaveによって開発されたChromeの拡張機能で、その主な機能は「Scans and highlights the GRE words in a webpage on demand. Contains over 2000 words from three popular lists」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot
screenshot

GRE Words Highlighter拡張機能のCRXファイルをダウンロード

GRE Words Highlighter拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        IMPORTANT SHORTCUTS :- 

     1. To Start Highlighting On a page  - 
          " Ctrl + Shift + H/h " 

     2.  To Edit Preference of Lists (Options Page)- 
           "Ctrl + Shift + L/l "
                                             
 Note - Above actions can also be done manually by using the popup page  
 pin the extension to the toolbar for ease of use (Refer Images above)


UPDATE NOTES:
  - Version 2.5/2.6 
       - Added meanings, Now you can see the meanings of the highlighted 
         word when hovering over it.
       - Added the GregMat List of words to the collection of words. So now 
         users have option to choose from 4 lists.  


KEY FEATURES:

 - You can edit your preferences and highlight words only from the list(s) of 
    your choice from the Options Page. 

 - Hover over the highlighted word to find extra information. You can also 
   click on the word to get meanings and more via Google's web dictionary.    

 - Different forms of the words are also highlighted to give you a 
    complete experience.  Eg - " Burgeoning "  ( GRE Word is "burgeon").
 

IMPORTANT :-

  - Please note that the extension does not read a webpage content without 
     you enabling it either manually or using the shortcuts

  - Kindly avoid invoking the extension on the same webpage more than 
    once. If you reload the extension, please also refresh any webpages 
    already open you want to highlight from.
  
  - The extension may take more time if the webpage is very large. 
    Consider a time of 3-4 seconds to finish highlighting for lengthy pages.

  - The extension does not scan hyperlinks to maintain the posture of the 
    webpage.

  - Deselecting a list in preferences will only omit words which are 
    exclusively in that list . Many high frequency words are 
    shared between lists.

  - The extension might not work in certain Google pages like the Home 
    page. Please refer Chrome's policy on that.                    

拡張機能の基本情報

名前 GRE Words Highlighter GRE Words Highlighter
ID dbhjkdbgppohbeioaklillegelmcaimh
公式URL https://chromewebstore.google.com/detail/gre-words-highlighter/dbhjkdbgppohbeioaklillegelmcaimh
説明 Scans and highlights the GRE words in a webpage on demand. Contains over 2000 words from three popular lists
ファイルサイズ 148 KB
インストール数 341
現在のバージョン 2.6
最終更新日 2021-08-05
公開日 2021-07-21
評価 4.92/5 合計 13 レビュー
開発者 Aditya Bhave
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GRE Words Highlighter",
    "description": "Scans and highlights the GRE words in a webpage on demand. Contains over 2000 words from three popular lists",
    "version": "2.6",
    "manifest_version": 3,
    "background": {
        "service_worker": "bj.js"
    },
    "permissions": [
        "storage",
        "activeTab",
        "scripting"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/icons8-rescan-document-16.png",
            "32": "\/images\/icons8-rescan-document-32.png",
            "48": "\/images\/icons8-rescan-document-48.png",
            "128": "\/images\/icons8-rescan-document-100.png"
        },
        "default_title": "Click Me"
    },
    "icons": {
        "16": "\/images\/icons8-rescan-document-16.png",
        "32": "\/images\/icons8-rescan-document-32.png",
        "48": "\/images\/icons8-rescan-document-48.png",
        "128": "\/images\/icons8-rescan-document-100.png"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Ctrl+Shift+Y",
                "mac": "Command+Shift+Y",
                "chromeos": "Ctrl+Shift+U",
                "linux": "Ctrl+Shift+J"
            }
        },
        "start-highlighting": {
            "suggested_key": {
                "default": "Ctrl+Shift+H",
                "mac": "Command+Shift+H"
            },
            "description": "Used To Inject Content Script Which Will start Highlighting Words"
        },
        "open-options": {
            "suggested_key": {
                "default": "Ctrl+Shift+L",
                "mac": "Command+Shift+L"
            },
            "description": "Used To open the Options Page"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "css": [
                "highlighter.css",
                "snackbar.css"
            ],
            "js": [
                "jquery-3.5.1.min.js"
            ]
        }
    ]
}