add firefox extension

This commit is contained in:
makaveli10
2023-06-16 19:46:56 +05:30
parent 1a0064b5c7
commit 2825bf4fe5
8 changed files with 517 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
{
"manifest_version": 2,
"name": "Audio Recorder",
"version": "1.0",
"description": "Record audio from any webpage.",
"permissions": [
"activeTab",
"<all_urls>"
],
"background": {
"scripts": ["background.js"],
"persistent": false
},
"browser_action": {
"default_popup": "popup.html",
"default_icon": "icon128.png"
},
"icons": {
"128":"icon128.png"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"]
}
]
}