-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfloating-panel.js
More file actions
133 lines (110 loc) · 5.43 KB
/
floating-panel.js
File metadata and controls
133 lines (110 loc) · 5.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
// Claude Arc Browser Floating Panel
// Uses plain DOM - injects sidepanel.html in an iframe with tabId
(function () {
"use strict";
if (window.__claudeFloatingPanelLoaded) return;
window.__claudeFloatingPanelLoaded = true;
const url = window.location.href;
if (
url.startsWith("chrome") ||
url.startsWith("arc://") ||
url.startsWith("about:") ||
url.startsWith("chrome-extension://") ||
url.includes("claude.ai/") ||
url.includes("/oauth") ||
url.includes("oauth_callback")
) {
return;
}
if (typeof chrome === "undefined" || !chrome?.runtime?.id) return;
const EXTENSION_ID = chrome.runtime.id;
const HEADER_HEIGHT = 36;
let panelVisible = false;
// ── Build Panel DOM ─────────────────────────────────────────────
const wrapper = document.createElement("div");
wrapper.id = "claude-arc-floating-panel";
wrapper.style.cssText = `
position: fixed;
z-index: 2147483647;
display: none;
top: 0;
right: 0;
width: 420px;
height: 100vh;
box-shadow: -2px 0 12px rgba(0,0,0,0.2);
font-family: -apple-system, BlinkMacSystemFont, sans-serif;
`;
wrapper.innerHTML = `
<div style="display:flex;flex-direction:column;width:100%;height:100%;background:#1a1a1a;border-left:1px solid rgba(255,255,255,0.08);">
<div id="claude-arc-header" style="display:flex;align-items:center;justify-content:space-between;height:${HEADER_HEIGHT}px;padding:0 8px 0 12px;background:#2a2a2a;cursor:default;user-select:none;-webkit-user-select:none;border-bottom:1px solid rgba(255,255,255,0.06);">
<div style="display:flex;align-items:center;gap:6px;color:#e0e0e0;font-size:12px;font-weight:500;">
<div style="width:16px;height:16px;border-radius:3px;background:#D97757;display:flex;align-items:center;justify-content:center;">
<svg width="10" height="10" viewBox="0 0 24 24" fill="white" xmlns="http://www.w3.org/2000/svg">
<path d="M4.709 15.955l4.397-10.985c.2-.5.349-.873.549-1.312.164-.36.506-.658.908-.658.401 0 .744.298.908.658.2.439.349.812.549 1.312l4.397 10.985c.175.437.262.656.262.83 0 .575-.466 1.041-1.041 1.041-.437 0-.72-.262-1.006-.83l-1.18-2.95H6.694l-1.18 2.95c-.286.568-.569.83-1.006.83A1.041 1.041 0 013.467 16.786c0-.175.088-.393.262-.83h.98zm2.643-3.808h4.45L9.577 6.375l-2.225 5.772z"/>
</svg>
</div>
Claude
</div>
<button id="claude-arc-close" style="width:24px;height:24px;border:none;background:transparent;color:#999;cursor:pointer;border-radius:4px;display:flex;align-items:center;justify-content:center;padding:0;">
<svg width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><line x1="6" y1="6" x2="18" y2="18"/><line x1="6" y1="18" x2="18" y2="6"/></svg>
</button>
</div>
<div id="claude-arc-content" style="flex:1;overflow:hidden;background:#fff;"></div>
</div>
`;
document.documentElement.appendChild(wrapper);
const closeBtn = wrapper.querySelector("#claude-arc-close");
const contentEl = wrapper.querySelector("#claude-arc-content");
// ── Get tab ID from service worker ──────────────────────────────
async function getTabId() {
return new Promise((resolve) => {
try {
chrome.runtime.sendMessage({ type: "GET_TAB_ID" }, (response) => {
resolve(response?.tabId || 0);
});
} catch (e) {
resolve(0);
}
});
}
// ── Panel Methods ──────────────────────────────────────────────
async function showPanel() {
let iframe = contentEl.querySelector("iframe");
if (!iframe) {
const tabId = await getTabId();
iframe = document.createElement("iframe");
iframe.src = `chrome-extension://${EXTENSION_ID}/sidepanel.html?tabId=${tabId}`;
iframe.allow = "clipboard-read; clipboard-write";
iframe.style.cssText = "width:100%;height:100%;border:none;background:#fff;";
contentEl.appendChild(iframe);
}
wrapper.style.display = "block";
panelVisible = true;
}
function hidePanel() {
wrapper.style.display = "none";
panelVisible = false;
}
function togglePanel() {
panelVisible ? hidePanel() : showPanel();
}
// ── Events ─────────────────────────────────────────────────────
closeBtn.addEventListener("click", hidePanel);
// ── Message Listener ──────────────────────────────────────────
try {
chrome.runtime.onMessage.addListener((message, sender, sendResponse) => {
if (message.type === "TOGGLE_FLOATING_PANEL") togglePanel();
if (message.type === "SHOW_FLOATING_PANEL") showPanel();
if (message.type === "HIDE_FLOATING_PANEL") hidePanel();
sendResponse({ success: true });
return true;
});
} catch (e) {}
// ── Keyboard Shortcut ─────────────────────────────────────────
document.addEventListener("keydown", (e) => {
if ((e.metaKey || e.ctrlKey) && e.key === "e") {
e.preventDefault();
togglePanel();
}
});
})();