adds .local/share/millennium and easyeffects

This commit is contained in:
2026-08-06 18:23:36 +02:00
parent f92fb90275
commit 8dc466cbac
2581 changed files with 339035 additions and 0 deletions
@@ -0,0 +1,113 @@
// Browser API compatibility
const browserAPI = typeof browser !== 'undefined' ? browser : chrome;
browserAPI.runtime.onMessage.addListener(function (request, sender, sendResponse) {
if (request.contentScriptQuery == "queryGame") {
var url = `https://www.protondb.com/api/v1/reports/summaries/${request.appId}.json`;
fetch(url)
.then((response) => {
if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`);
}
return response.json();
})
.then((response) => {
sendResponse(response);
})
.catch((error) => {
sendResponse({ error: error.message }); // Send an error response if needed
});
return true; // Keep the message channel open
} else if (request.contentScriptQuery == "queryReview") {
var url = `http://protondb.solidet.com/api/reports/${request.appId}`;
fetch(url)
.then((response) => {
if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`);
}
return response.json();
})
.then((data) => {
sendResponse(data);
})
.catch((error) => {
sendResponse({ error: error.message }); // Send an error response if needed
});
return true; // Keep the message channel open
} else if (request.contentScriptQuery == "queryDeckStats") {
var url = `https://store.steampowered.com/saleaction/ajaxgetdeckappcompatibilityreport?nAppID=${request.appId}`;
fetch(url)
.then((response) => {
if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`);
}
return response.json();
})
.then((data) => {
let status = "";
if (!data.success) {
throw new Error(`Error! No game found, success: ${data.success}`);
}
let icon;
const category = data.results.resolved_category;
switch (category) {
case 0:
status = "unknown";
icon = "deck_unknown";
break;
case 1:
status = "unsupported";
icon = "deck_unsupported";
break;
case 2:
status = "playable";
icon = "deck_playable";
break;
case 3:
status = "verified";
icon = "deck_verified";
break;
default:
return;
}
const deckInfo = {
status: status,
icon: icon,
};
sendResponse(deckInfo);
})
.catch((error) => {
sendResponse({ error: error.message }); // Send an error response if needed
});
return true; // Keep the message channel open
} else if (request.contentScriptQuery == "queryPlatforms") {
var url = `https://www.protondb.com/proxy/steam/api/appdetails/?appids=${request.appId}`;
fetch(url)
.then((response) => {
if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`);
}
return response.json();
})
.then((data) => {
let responseObject=data[request.appId]
let status = "";
if (!responseObject.success) {
throw new Error(`Error! No game found, success: ${data.success}`);
}
sendResponse(responseObject.data.platforms);
})
.catch((error) => {
sendResponse({ error: error.message }); // Send an error response if needed
});
return true; // Keep the message channel open
}
});