(chore): initial MVP release v0.1.0

This commit is contained in:
2025-05-01 21:39:12 +05:30
commit bd9483374f
36 changed files with 10146 additions and 0 deletions

112
entrypoints/background.ts Normal file
View File

@@ -0,0 +1,112 @@
import { WebsocketMessage } from "@/types/websocket";
export default defineBackground(() => {
const sendMessageToNativeHost = (message: WebsocketMessage) => {
return new Promise((resolve, reject) => {
let port = browser.runtime.connectNative('com.neosubhamoy.neodlp');
port.onMessage.addListener((response) => {
console.log('Received from native host:', response);
if (response.status === 'success') {
resolve(response.response);
} else if (response.status === 'error') {
reject(new Error(response.message));
}
});
port.onDisconnect.addListener(() => {
if (browser.runtime.lastError) {
reject(new Error(browser.runtime.lastError.message));
}
});
port.postMessage(message);
});
}
// Listen for messages from the popup or content scripts
browser.runtime.onMessage.addListener((request, sender, sendResponse) => {
if (request.action === 'download') {
const url = request.url;
sendMessageToNativeHost({url: url, command: 'download', argument: ''}).then(response => sendResponse(response))
return true; // Keep the message channel open for sendResponse to be called asynchronously
}
});
// Listen for the keyboard commands
browser.commands.onCommand.addListener(async (command) => {
if (command === "neodlp:quick-download") {
try {
const tabs = await browser.tabs.query({ active: true, currentWindow: true });
const activeTab = tabs[0];
if (activeTab && activeTab.url) {
console.log("Quick download triggered for URL:", activeTab.url);
const response = await sendMessageToNativeHost({
url: activeTab.url,
command: 'download',
argument: ''
});
console.log("Quick download response:", response);
} else {
console.error("No active tab or URL found for quick download");
}
} catch (error) {
console.error("Error in quick download:", error);
}
}
});
// Clear existing context menus before creating new ones
browser.contextMenus.removeAll().then(() => {
// Context menu for quick download
browser.contextMenus.create({
id: "quick-download:page",
title: "Download with Neo Downloader Plus",
contexts: ["page"]
});
browser.contextMenus.create({
id: "quick-download:link",
title: "Download Link with Neo Downloader Plus",
contexts: ["link"]
});
browser.contextMenus.create({
id: "quick-download:media",
title: "Download Media with Neo Downloader Plus",
contexts: ["video", "audio"]
});
browser.contextMenus.create({
id: "quick-download:selection",
title: "Download Selection with Neo Downloader Plus",
contexts: ["selection"]
});
});
browser.contextMenus.onClicked.addListener((info, tab) => {
let url = '';
if (info.menuItemId === "quick-download:page") {
if(!info.pageUrl) return;
url = info.pageUrl;
} else if (info.menuItemId === "quick-download:link") {
if(!info.linkUrl) return;
url = info.linkUrl;
} else if (info.menuItemId === "quick-download:media") {
if(!info.srcUrl) return;
url = info.srcUrl;
} else if (info.menuItemId === "quick-download:selection") {
if(!info.selectionText) return;
url = info.selectionText;
}
if (!url) return;
sendMessageToNativeHost({url: url, command: 'download', argument: ''}).then(response => {
console.log("Context menu download response:", response);
}).catch(error => {
console.error("Error in context menu download:", error);
});
});
});