Skip to content

Instantly share code, notes, and snippets.

@pavelzag
Created September 5, 2019 19:53
Show Gist options
  • Save pavelzag/a7a2b999c49dc213e0a8a165382eb782 to your computer and use it in GitHub Desktop.
Save pavelzag/a7a2b999c49dc213e0a8a165382eb782 to your computer and use it in GitHub Desktop.
{
"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