Gibbon

Gibbon

Gibbon Extension for Google Chrome - One click to put the best content in your learning flow.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Gibbon",
  "description": "Gibbon Extension for Google Chrome - One click to put the best content in your learning flow.",
  "version": "1.1.0",
  "short_name": "Gibbon",
  "homepage_url": "http://gibbon.co",
  "icons": {
    "128": "icons/icon-128px.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "icons/icon-19px.png",
      "38": "icons/icon-38px.png"
    },
    "default_title": "+ Gibbon"
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "web_accessible_resources": [
    "jquery-1.10.1.min.map",
    "frame.html"
  ],
  "content_scripts": [
    {
      "js": [
        "jquery-1.10.1.min.js",
        "installed.js"
      ],
      "run_at": "document_start",
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ]
}