1
0
Fork 0
gather-fullscreen/background.js

20 lines
445 B
JavaScript
Raw Normal View History

2021-10-17 00:02:59 +08:00
chrome.runtime.onInstalled.addListener(() => {
chrome.contextMenus.create({
title: 'Make Gather fullscreen',
type: 'normal',
documentUrlPatterns: ["https://gather.town/app/*"],
id: 'make-fullscreen',
});
});
chrome.contextMenus.onClicked.addListener(async (data) => {
if (data.menuItemId === 'make-fullscreen') {
2021-10-17 00:20:40 +08:00
chrome.tabs.insertCSS({
file: 'inject.css',
2021-10-17 00:02:59 +08:00
});
2021-10-17 00:20:40 +08:00
chrome.tabs.executeScript({
file: 'inject.js',
2021-10-17 00:02:59 +08:00
});
}
});