This commit is contained in:
DESKTOP-RTLN3BA\$punk 2024-08-12 00:32:42 -07:00
parent 24f641347d
commit 63146aa9b7
86 changed files with 18766 additions and 0 deletions

BIN
extension/public/brain.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 587 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

View file

@ -0,0 +1,38 @@
{
"manifest_version": 3,
"name": "SurfSense",
"description": "Extension to collect Browsing History for SurfSense.",
"version": "0.0.1",
"action": {
"default_popup": "popup.html"
},
"icons": {
"16": "icon-16.png",
"32": "icon-32.png",
"48": "icon-48.png",
"128": "icon-128.png"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["js/content_script.js"]
}
],
"background": {
"service_worker": "js/background.js"
},
"permissions": [
"storage",
"scripting",
"unlimitedStorage"
],
"host_permissions": [
"<all_urls>"
]
}

View file

@ -0,0 +1,12 @@
<!DOCTYPE html>
<html>
<head>
<title>My Test Extension Options</title>
<script src="js/vendor.js"></script>
</head>
<body>
<div id="root"></div>
<script src="js/options.js"></script>
</body>
</html>

View file

@ -0,0 +1,13 @@
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Getting Started Extension's Popup</title>
<script src="js/vendor.js"></script>
</head>
<body>
<div id="root"></div>
<script src="js/popup.js"></script>
</body>
</html>