Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Auto Fullscreen Tab",
"version": "1.8",
"description": "Automatically makes a specific tab fullscreen.",
"permissions": [
"tabs",
"windows"
],
"host_permissions": [
"https:\/\/*.coupang.net\/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.coupang.net\/*"
],
"js": [
"content.js"
]
}
]
}