simple-highlight

A small chromium extension to make highlighting pages on the fly easier.
git clone https://git.jaderune.net/jbauer/simple-highlight
Log | Files | Refs | README | LICENSE

manifest.json (442B)


      1 {
      2     "manifest_version": 3,
      3 
      4     "name": "simple-highlight",
      5     "description": "Easily highlight text on a webpage.",
      6     "version": "0.1.0",
      7 
      8     "permissions": ["activeTab", "scripting"],
      9     "host_permissions": ["<all_urls>"],
     10 
     11     "background": {
     12 	    "service_worker": "background.js"
     13     },
     14 
     15     "action": {},
     16 
     17     "commands": {
     18 	"_execute_action": {
     19 		"suggested_key": "Alt+H",
     20 		"description": "Highlight selected text."
     21 	}
     22     }
     23 }