summaryrefslogtreecommitdiff
path: root/manifest.json
diff options
context:
space:
mode:
Diffstat (limited to 'manifest.json')
-rw-r--r--manifest.json18
1 files changed, 18 insertions, 0 deletions
diff --git a/manifest.json b/manifest.json
new file mode 100644
index 0000000..b23914f
--- /dev/null
+++ b/manifest.json
@@ -0,0 +1,18 @@
+{
+ "name": "BigBlueButton Recorder",
+ "version": "0.1.0",
+ "manifest_version": 2,
+ "background": {
+ "scripts": ["background.js"]
+ },
+ "content_scripts": [{
+ "matches": ["<all_urls>"],
+ "js": ["content_script.js"],
+ "run_at": "document_start"
+ }],
+ "permissions": [
+ "desktopCapture",
+ "<all_urls>",
+ "downloads"
+ ]
+}