Created
September 5, 2019 19:53
-
-
Save pavelzag/a7a2b999c49dc213e0a8a165382eb782 to your computer and use it in GitHub Desktop.
This file contains 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
{ | |
"manifest_version": 2, | |
"name": "JenkinsTriggerExtension", | |
"description": "Just a Jenkins triggering extension", | |
"version": "1", | |
"author": "Pavel Zagalsky", | |
"browser_action": { | |
"default_icon": "chrome.png", | |
"default_title": "Select a city", | |
"default_popup": "popup.html" | |
}, | |
"permissions": [ | |
"activeTab", | |
"tabs" | |
], | |
"content_security_policy": "script-src 'self' https://ajax.googleapis.com; object-src 'self'", | |
"content_scripts": [ | |
{ | |
"matches": ["http://*/*", "https://*/*"], | |
"js": ["popup.js"] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment