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": "Lokkery \u2013 Reserve and Manage Shared Web Environments",
"version": "1.0.3",
"description": "Prevent accidental interference in shared environments. Reserve, lock, and coordinate test environments directly in your browser.",
"permissions": [
"contextMenus",
"tabs",
"storage",
"activeTab"
],
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"host_permissions": [
"http:\/\/127.0.0.1:8081\/*",
"http:\/\/localhost:8081\/*",
"https:\/\/lokkery.com\/*",
"https:\/\/www.lokkery.com\/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"css": [
"banner.css"
]
}
],
"action": {
"default_popup": "popup.html",
"default_title": "Lokkery"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'; connect-src 'self' http:\/\/127.0.0.1:8081 http:\/\/localhost:8081 https:\/\/lokkery.com https:\/\/www.lokkery.com;"
}
}