Highlight to Hilite.me

Highlight to Hilite.me

This extension allows the user to highlight code to send to hilite.me

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Highlight to Hilite.me",
  "description": "This extension allows the user to highlight code to send to hilite.me",
  "version": "0.1",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "options_page": "options/options.html",
  "browser_action": {
    "default_icon": {
      "19": "icons/icon19.png",
      "38": "icons/icon38.png"
    },
    "default_popup": "options/options.html"
  },
  "permissions": [
    "clipboardWrite",
    "contextMenus",
    "storage",
    "notifications",
    "http://hilite.me/"
  ],
  "background": {
    "scripts": [
      "main.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "selectionListener.js"
      ]
    }
  ]
}