Skip to content

Instantly share code, notes, and snippets.

@mkpt
Created October 24, 2017 23:32
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 mkpt/c2ba9a45781b6b2da1a4b0361fa98428 to your computer and use it in GitHub Desktop.
Save mkpt/c2ba9a45781b6b2da1a4b0361fa98428 to your computer and use it in GitHub Desktop.
{
"manifest_version": 2,
"name":"simplegoogle",
"version":"0.0.1",
"description":"Remove doodle and text from Google.com",
"icons":{
"128":"icons/icon128.png",
"48":"icons/icon48.png"
},
"homepage_url":"https://github.com/mkpt/simplegoogle",
"content_scripts":[
{
"matches":[
"http://*/*",
"https://*/*"
],
"js":[
"app.js"
],
"run_at":"document_start"
}
],
"permissions":[
"contextMenus",
"tabs",
"http://*/*",
"https://*/*"
],
"background":{
"page":"background.html"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment