ViperBox C2C

ViperBox C2C
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ViperBox C2C",
  "description": "ViperBox C2C",
  "author": "Jody Gonzales [[email protected]]",
  "version": "1.5.1",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "jquery-3.1.1.min.js",
      "bg.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery-3.1.1.min.js",
        "libphonenumber-js.min.js",
        "tooltip.js",
        "cs.js"
      ],
      "css": [
        "cs.css"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "icons": {
    "128": "images/icon128.png"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "<all_urls>",
    "storage"
  ],
  "options_page": "options.html",
  "browser_action": {
    "default_icon": "images/icon128.png",
    "default_title": "ViperBox"
  }
}