diff options
| author | Jibon Costa <jiboncosta57@gmail.com> | 2020-03-26 13:39:02 +0600 |
|---|---|---|
| committer | Jibon Costa <jiboncosta57@gmail.com> | 2020-03-26 13:39:02 +0600 |
| commit | e000c457c8f0b6b58d6b1575ad69e0e30bc7f1c8 (patch) | |
| tree | d11f5c1beb94c7339b947421848f018ecca275eb /manifest.json | |
| download | bbb-recorder-e000c457c8f0b6b58d6b1575ad69e0e30bc7f1c8.tar.gz bbb-recorder-e000c457c8f0b6b58d6b1575ad69e0e30bc7f1c8.zip | |
first commit
Diffstat (limited to 'manifest.json')
| -rw-r--r-- | manifest.json | 18 |
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" + ] +} |
