Skip to content

Commit ef8c417

Browse files
committed
Initial commit.
0 parents  commit ef8c417

9 files changed

+42
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Zoom Close

assets/icon-128.png

9.86 KB
Loading

assets/icon-16.png

731 Bytes
Loading

assets/icon-48.png

3.4 KB
Loading

assets/icon.png

28.1 KB
Loading

assets/screenshot.png

79.9 KB
Loading

background.js

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
chrome.runtime.onMessage.addListener(
2+
function (req, sender) {
3+
chrome.tabs.remove(sender.tab.id);
4+
}
5+
);

content.js

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
chrome.runtime.sendMessage({}, function() {});

manifest.json

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"manifest_version": 2,
3+
4+
"name": "Zoom Closer",
5+
"description": "This extension automatically closes the launced window from Zoom meetings.",
6+
"version": "1.0",
7+
8+
"icons": {
9+
"16": "assets/icon-16.png",
10+
"48": "assets/icon-48.png",
11+
"128": "assets/icon-128.png"
12+
},
13+
14+
"background": {
15+
"scripts": [
16+
"background.js"
17+
]
18+
},
19+
20+
"content_scripts": [
21+
{
22+
"matches": [
23+
"https://zoom.us/postattendee"
24+
],
25+
"js": [
26+
"content.js"
27+
]
28+
}
29+
],
30+
31+
"permissions": [
32+
"tabs",
33+
"https://zoom.us/postattendee"
34+
]
35+
}

0 commit comments

Comments
 (0)