Skip to content

Instantly share code, notes, and snippets.

@mrmlnc
Last active October 18, 2015 08:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mrmlnc/130a04baf3df086c6c80 to your computer and use it in GitHub Desktop.
Save mrmlnc/130a04baf3df086c6c80 to your computer and use it in GitHub Desktop.
This is manifest.json for content_scripts
{
"manifest_version": 2,
"name": "test",
"short_name": "test",
"description": "test",
"version": "0.1.0",
"permissions": [ "activeTab" ],
"background": {
"persistent": false,
"page": "background.html"
},
"content_scripts": [
{
"matches": [
"http://vk.com/*",
"https://vk.com/*"
],
"js": [ "test.js" ]
}
]
}
(function() {
console.log('test');
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment