Initial commit: LinkSyncServer and LinkSyncExtension projects with complete documentation, models, API endpoints, tests, and extension implementation
This commit is contained in:
20
LinkSyncExtension/background.html
Normal file
20
LinkSyncExtension/background.html
Normal file
@@ -0,0 +1,20 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'">
|
||||
<title>LinkSync Background</title>
|
||||
<style>
|
||||
body { margin: 0; padding: 10px; font-family: system-ui, sans-serif; }
|
||||
#status { margin-top: 10px; padding: 8px; border-radius: 4px; }
|
||||
.connected { background: #d1fae5; color: #065f46; }
|
||||
.disconnected { background: #fee2e2; color: #991b1b; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h3>LinkSync Extension</h3>
|
||||
<p>Status: <span id="status-text">Connecting...</span></p>
|
||||
<div id="status"></div>
|
||||
<script src="background.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user