Skip to content

Commit 8f32118

Browse files
committed
"cookie name" tab has been removed. "storage" permission was removed from manifest.json
1 parent fb28801 commit 8f32118

2 files changed

Lines changed: 3 additions & 7 deletions

File tree

manifest.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@
55
"version": "1.1.1",
66
"permissions": [
77
"cookies",
8-
"activeTab",
9-
"storage"
8+
"activeTab"
109
],
1110
"host_permissions": [
1211
"<all_urls>"

src/app/components/cookie/CookieTable.tsx

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,9 @@ export default function CookieTable({
2323

2424
const COLUMN_WIDTHS = {
2525
order: '60px',
26-
alias: '180px',
27-
cookieName: '150px',
26+
alias: '210px',
2827
project: '140px',
29-
actions: '100px'
28+
actions: '120px'
3029
}
3130

3231
const handleCopy = (text: string) => {
@@ -39,7 +38,6 @@ export default function CookieTable({
3938
<TableRow>
4039
<TableHead style={{width: COLUMN_WIDTHS.order}} className="text-center">Order</TableHead>
4140
<TableHead style={{width: COLUMN_WIDTHS.alias}}>Alias</TableHead>
42-
<TableHead style={{width: COLUMN_WIDTHS.cookieName}}>Cookie Name</TableHead>
4341
<TableHead style={{width: COLUMN_WIDTHS.project}}>Project</TableHead>
4442
<TableHead style={{width: COLUMN_WIDTHS.actions}} className="text-center">Actions</TableHead>
4543
</TableRow>
@@ -59,7 +57,6 @@ export default function CookieTable({
5957
{cookie.alias}
6058
</div>
6159
</TableCell>
62-
<TableCell style={{width: COLUMN_WIDTHS.cookieName}}>{cookie.name}</TableCell>
6360
<TableCell style={{width: COLUMN_WIDTHS.project}}>
6461
<div className="flex items-center gap-2">
6562
{cookie.project ? (

0 commit comments

Comments
 (0)