Add VA token copy button to extension

This commit is contained in:
2026-07-05 01:11:18 +00:00
parent 64f162440f
commit a80074ac57
4 changed files with 79 additions and 25 deletions
+50 -20
View File
@@ -3,6 +3,7 @@ const APT_TOKEN = 'apt-local-bridge-token';
const tabInfo = document.getElementById('tabInfo');
const sendBtn = document.getElementById('sendBtn');
const copyBtn = document.getElementById('copyBtn');
const statusMsg = document.getElementById('statusMsg');
let detectedOrigin = null;
@@ -12,6 +13,29 @@ function showStatus(message, type) {
statusMsg.className = 'status-msg ' + type;
}
function setActionButtonsDisabled(disabled) {
sendBtn.disabled = disabled;
copyBtn.disabled = disabled;
}
async function getVaCookieValue() {
if (!detectedOrigin) {
throw new Error('No Alta deployment detected.');
}
const cookie = await chrome.cookies.get({ url: detectedOrigin, name: 'va' });
if (!cookie || !cookie.value) {
throw new Error('No "va" session cookie found. Are you logged in?');
}
if (cookie.expirationDate && cookie.expirationDate < Date.now() / 1000) {
throw new Error('Session cookie has expired. Please log in again.');
}
return cookie.value;
}
// Check the active tab on popup open
chrome.tabs.query({ active: true, currentWindow: true }, (tabs) => {
if (!tabs || tabs.length === 0) {
@@ -42,30 +66,18 @@ chrome.tabs.query({ active: true, currentWindow: true }, (tabs) => {
detectedOrigin = url.origin;
tabInfo.textContent = 'Detected: ' + hostname;
tabInfo.className = 'tab-info detected';
sendBtn.disabled = false;
setActionButtonsDisabled(false);
});
// Send cookie on button click
sendBtn.addEventListener('click', async () => {
if (!detectedOrigin) return;
sendBtn.disabled = true;
showStatus('Retrieving cookie...', 'info');
setActionButtonsDisabled(true);
showStatus('Retrieving VA token...', 'info');
try {
const cookie = await chrome.cookies.get({ url: detectedOrigin, name: 'va' });
if (!cookie || !cookie.value) {
showStatus('No "va" session cookie found. Are you logged in?', 'error');
sendBtn.disabled = false;
return;
}
if (cookie.expirationDate && cookie.expirationDate < Date.now() / 1000) {
showStatus('Session cookie has expired. Please log in again.', 'error');
sendBtn.disabled = false;
return;
}
const cookieValue = await getVaCookieValue();
showStatus('Sending to Alta Proxy Tool...', 'info');
@@ -77,17 +89,16 @@ sendBtn.addEventListener('click', async () => {
},
body: JSON.stringify({
deploymentUrl: detectedOrigin,
cookieValue: cookie.value
cookieValue
})
});
const data = await response.json();
if (data.success) {
showStatus('Cookie sent successfully!', 'success');
showStatus('VA token sent successfully!', 'success');
} else {
showStatus('Error: ' + (data.message || 'Unknown error'), 'error');
sendBtn.disabled = false;
}
} catch (err) {
if (err.message && err.message.includes('Failed to fetch')) {
@@ -95,6 +106,25 @@ sendBtn.addEventListener('click', async () => {
} else {
showStatus('Error: ' + err.message, 'error');
}
sendBtn.disabled = false;
} finally {
setActionButtonsDisabled(false);
}
});
// Copy VA token on button click
copyBtn.addEventListener('click', async () => {
if (!detectedOrigin) return;
setActionButtonsDisabled(true);
showStatus('Retrieving VA token...', 'info');
try {
const cookieValue = await getVaCookieValue();
await navigator.clipboard.writeText(cookieValue);
showStatus('VA token copied to clipboard!', 'success');
} catch (err) {
showStatus('Error: ' + err.message, 'error');
} finally {
setActionButtonsDisabled(false);
}
});