Skip to content

Instantly share code, notes, and snippets.

@fpigerre
Created April 12, 2014 02:55
Show Gist options
  • Select an option

  • Save fpigerre/10516524 to your computer and use it in GitHub Desktop.

Select an option

Save fpigerre/10516524 to your computer and use it in GitHub Desktop.
Manifest file for the KeyBase chrome add-on
{
"name": "KeybaseButton",
"version": "1.0",
"manifest_version": 2,
"description": "Keybase button for GitHub profiles",
"content_security_policy": "script-src 'self'; object-src 'self' https://github.global.ssl.fastly.net;",
"content_scripts": [
{
"matches": ["https://github.com/*", "https://www.github.com/*"],
"js": ["scripts/jquery-2.0.0.min.js", "scripts/main.js"],
"run_at": "document_idle"
}
],
"icons": {
"16": "icons/16.png"
},
"permissions": [
"https://github.com/*",
"https://www.github.com/*",
"https://keybase.io/*"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment