Search book recommendations and manage your reading list from any webpage.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "__MSG_appName__",
"description": "__MSG_appDesc__",
"default_locale": "en",
"version": "0.4.12",
"manifest_version": 3,
"permissions": [
"contextMenus",
"tabs",
"storage",
"scripting"
],
"host_permissions": [
"*://*/*"
],
"background": {
"service_worker": "serviceWorker.bundle.js"
},
"content_scripts": [
{
"js": [
"content.bundle.js"
],
"css": [
"content.css"
],
"matches": [
"<all_urls>"
]
}
],
"action": {
"default_icon": {
"16": "assets/16.png",
"32": "assets/32.png",
"48": "assets/48.png",
"128": "assets/128.png"
}
},
"icons": {
"16": "assets/16.png",
"32": "assets/32.png",
"48": "assets/48.png",
"128": "assets/128.png"
},
"web_accessible_resources": [
{
"resources": [
"panel.html",
"iframeListener.bundle.js"
],
"matches": [
"<all_urls>"
]
}
]
}