Skip to content

Instantly share code, notes, and snippets.

@AnandShiva
Last active September 13, 2020 15:32
Show Gist options
  • Save AnandShiva/792b39b167dd97ef22446be1213c4cfe to your computer and use it in GitHub Desktop.
Save AnandShiva/792b39b167dd97ef22446be1213c4cfe to your computer and use it in GitHub Desktop.
Vue Extension Medium Example
{
"manifest_version": 2,
"name": "Vue Extension",
"version": "1.0.0",
"description": "This is a sample description",
"short_name": "Short Sample Name",
"permissions": ["activeTab", "declarativeContent", "storage", "<all_urls>"],
"chrome_url_overrides" : {
"newtab": "newTab.html"
},
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"background": {
"scripts": [
"background.js"
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment