Skip to content

Instantly share code, notes, and snippets.

@Moizsohail
Last active March 3, 2022 16:03
Show Gist options
  • Save Moizsohail/34731b91aa6fceaf98426ae0e2aa3d80 to your computer and use it in GitHub Desktop.
Save Moizsohail/34731b91aa6fceaf98426ae0e2aa3d80 to your computer and use it in GitHub Desktop.
Chrome Extension In React With NPM Modules: Part 2
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["./static/js/content.js"],
"all_frames": false,
"run_at": "document_end"
}
],
"background": { "service_worker": "./static/js/background.js" },
"commands": {
"execute": {
"suggested_key": {
"default": "Ctrl+Shift+Y",
"mac": "Command+MacCtrl+Y"
},
"description": "Run execute on the current page."
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment