Whisbi Share a web page

Whisbi Share a web page

Whisbi Share a web page extension for Google Chrome

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Whisbi Share a web page",
  "version": "1.7",
  "manifest_version": 2,
  "description": "Whisbi Share a web page extension for Google Chrome",
  "icons": {
    "128": "icon128.png"
  },
  "background": {
    "scripts": [
      "js/lib/angular.min.js",
      "js/app/components/background.js",
      "js/app/components/backgroundFactory.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "img/whisbi.png",
    "default_popup": "popup.html",
    "default_title": "Whisbi"
  },
  "content_scripts": [
    {
      "js": [
        "js/lib/jquery-1.8.2.min.js",
        "js/app/content.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://localhost/*",
      "*://*.whisbi.com/*"
    ]
  },
  "minimum_chrome_version": "18",
  "permissions": [
    "<all_urls>",
    "http://*/*",
    "https://*/*",
    "cookies",
    "tabs",
    "tabs",
    "activeTab"
  ]
}