Skip to content

Commit 40e23f7

Browse files
committed
Merge branch 'feat-settings-page' of https://github.com/PaperDebugger/paperdebugger into feat-settings-page
2 parents e6ab4ea + c11f392 commit 40e23f7

3 files changed

Lines changed: 1 addition & 5 deletions

File tree

webapp/_webapp/src/manifest.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
"optional_host_permissions": [
1717
"*://*/*"
1818
],
19+
"permissions_explanation": "The optional_host_permissions pattern '*://*/*' allows the extension to request access to any website. This is necessary to support self-hosted Overleaf instances and similar use cases. Users will be prompted to grant access only when needed. Please review the extension documentation for details on security and privacy implications.",
1920
"permissions": [
2021
"cookies",
2122
"storage",

webapp/_webapp/src/views/extension-settings/components/ExtensionSettings.tsx

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,6 @@ export const ExtensionSettings = () => {
55
<div className="min-h-screen bg-gray-50 p-5">
66
<div className="max-w-4xl mx-auto bg-white rounded-lg shadow-md p-8">
77
<h1 className="text-2xl font-semibold mb-2 text-gray-900">PaperDebugger Settings</h1>
8-
<p className="text-gray-600 text-sm mb-8">
9-
10-
</p>
11-
128
<HostPermissionWidget />
139
</div>
1410
</div>

webapp/_webapp/src/views/extension-settings/components/HostPermissionWidget/HostPermissionWidget.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ export const HostPermissionWidget = () => {
1313
submitPermissionRequest,
1414
getMessageClassName,
1515
} = useHostPermissionManager();
16-
console.log("HostPermissionBody", permissions);
1716

1817
return (
1918
<div className="border-b border-gray-200 pb-8 mb-8">

0 commit comments

Comments
 (0)