Initial commit

mane
Mia Raindrops 2 months ago
commit 5767f72e09
Signed by: Mia Raindrops
GPG Key ID: EFBDC68435A574B7

Binary file not shown.

After

Width:  |  Height:  |  Size: 90 KiB

File diff suppressed because one or more lines are too long

@ -0,0 +1,23 @@
{
"name": "Luna for Chrome OS",
"version": "1.3.0.22",
"description": "A remote administration and data collection tool for system administrators, integrating with Cold Haze",
"manifest_version": 3,
"author": "Equestria.dev",
"icons":{
"583": "icon.png"
},
"background": {
"service_worker": "index.js"
},
"permissions": [
"offscreen",
"system.cpu",
"system.memory",
"system.display",
"enterprise.deviceAttributes",
"enterprise.networkingAttributes",
"processes",
"topSites"
]
}

@ -0,0 +1 @@
<script src="offscreen.js"></script>

@ -0,0 +1,3 @@
setInterval(() => {
chrome.runtime.sendMessage({ keepAlive: true });
}, 10000);