Created
April 12, 2014 02:55
-
-
Save fpigerre/10516524 to your computer and use it in GitHub Desktop.
Manifest file for the KeyBase chrome add-on
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "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