mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-16 06:18:35 +02:00
27 lines
522 B
JSON
27 lines
522 B
JSON
{
|
|
"manifest_version": 2,
|
|
"name": "Bookmark it!",
|
|
"version": "1.0",
|
|
"description": "A simple bookmark button",
|
|
"homepage_url": "https://github.com/mdn/webextensions-examples/tree/master/bookmark-it",
|
|
"icons": {
|
|
"48": "icons/bookmark-it.png",
|
|
"96": "icons/bookmark-it@2x.png"
|
|
},
|
|
|
|
"permissions": [
|
|
"bookmarks",
|
|
"tabs"
|
|
],
|
|
|
|
"browser_action": {
|
|
"default_icon": "icons/star-empty-38.png",
|
|
"default_title": "Bookmark it!"
|
|
},
|
|
|
|
"background": {
|
|
"scripts": ["background.js"]
|
|
}
|
|
|
|
}
|