Skip to content

Instantly share code, notes, and snippets.

@dijux
Last active July 4, 2022 14:31
Show Gist options
  • Select an option

  • Save dijux/a092e51faded127bec011a7f05bbf17f to your computer and use it in GitHub Desktop.

Select an option

Save dijux/a092e51faded127bec011a7f05bbf17f to your computer and use it in GitHub Desktop.
manifest.json for firebox
{
"manifest_version": 2,
"name": "My Notes",
"description": "Take notes in your favorites websites",
"version": "1.1",
"background": {
"scripts": ["background.js"]
},
"browser_action": {
"default_popup": "popup.html",
"default_icon": "icon.png"
},
"icons": {
"12": "icon.png",
"24": "icon.png",
"36": "icon.png",
"72": "icon.png",
"124": "icon.png"
},
"permissions": [
"storage",
"contextMenus",
"tabs",
"scripting"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"/content.js"
],
"run_at": "document_end",
"all_frames": true
}
],
"web_accessible_resources": [
"*/*.css",
"iframe.html",
"assets/note_selected.png",
"assets/note.png",
"injected.js"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment