LeetCode/LintCode Helper

LeetCode/LintCode Helper

This extension is a useful helper when you code at LeetCode/LintCode. It will automatically search solutions for your problems

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "LeetCode/LintCode Helper",
  "short_name": "LC Helper",
  "description": "This extension is a useful helper when you code at LeetCode/LintCode. It will automatically search solutions for your problems",
  "version": "1.2",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "common.js",
      "background.js"
    ],
    "persistent": false
  },
  "page_action": {
    "default_icon": "LC.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "declarativeContent",
    "http://www.jiuzhang.com/*",
    "https://www.jiuzhang.com/*"
  ]
}