mirror of
https://github.com/Zetaphor/browser-recall.git
synced 2025-12-06 10:29:38 +00:00
39 lines
723 B
JSON
39 lines
723 B
JSON
{
|
|
"manifest_version": 2,
|
|
"name": "Browser Recall Helper",
|
|
"version": "1.0",
|
|
"description": "Sends page visited content to the browser recall server to be saved as markdown",
|
|
"icons": {
|
|
"48": "icon.png",
|
|
"96": "icon.png"
|
|
},
|
|
"permissions": [
|
|
"webNavigation",
|
|
"activeTab",
|
|
"<all_urls>",
|
|
"tabs"
|
|
],
|
|
"background": {
|
|
"scripts": [
|
|
"background.js"
|
|
],
|
|
"persistent": true
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": [
|
|
"<all_urls>"
|
|
],
|
|
"js": [
|
|
"content.js"
|
|
],
|
|
"run_at": "document_idle",
|
|
"all_frames": false
|
|
}
|
|
],
|
|
"browser_specific_settings": {
|
|
"gecko": {
|
|
"id": "page-content-sender@example.com"
|
|
}
|
|
}
|
|
} |