Instant Syntax

Instant Syntax

This extension will highlight the code syntax of any highlighted text

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Instant Syntax",
  "description": "This extension will highlight the code syntax of any highlighted text",
  "version": "1.1",
  "author": "Salvador Gutierrez",
  "background": {
    "css": [
      "popup_style.css"
    ],
    "scripts": [
      "simpleInsert.js"
    ],
    "persistent": false
  },
  "icons": {
    "38": "icon_38.png",
    "128": "icon_128.png"
  },
  "permissions": [
    "https://*/*",
    "activeTab",
    "storage"
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "icon_38.png"
  }
}