Skip to content

Commit

Permalink
reorder json
Browse files Browse the repository at this point in the history
  • Loading branch information
uiolee committed Oct 29, 2024
1 parent 0c7b0b1 commit 145b2d5
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 28 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@
"prewatch": "pnpm run clean",
"watch": "parcel watch src/manifest.json --watch-dir src --no-hmr"
},
"dependencies": {
"@picocss/pico": "^2.0.6"
},
"devDependencies": {
"@parcel/config-webextension": "^2.12.0",
"@parcel/optimizer-data-url": "^2.12.0",
Expand All @@ -44,8 +47,5 @@
"parcel": "^2.12.0",
"prettier": "^3.3.3",
"web-ext": "^8.3.0"
},
"dependencies": {
"@picocss/pico": "^2.0.6"
}
}
47 changes: 22 additions & 25 deletions src/manifest.json
Original file line number Diff line number Diff line change
@@ -1,39 +1,36 @@
{
"manifest_version": 3,
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"version": "0.5.0",
"default_locale": "en",
"homepage_url": "https://github.com/uiolee/get_cookies",
"action": {
"default_area": "navbar",
"default_icon": {
"16": "icons/favicon-16x16.png",
"32": "icons/favicon-32x32.png",
"180": "icons/apple-touch-icon.png",
"192": "icons/android-chrome-192x192.png",
"512": "icons/android-chrome-512x512.png"
},
"default_popup": "pages/popup.html",
"default_title": "__MSG_extensionName__"
},
"author": "Uiolee",
"permissions": ["activeTab", "cookies"],
"optional_permissions": ["activeTab", "cookies", "<all_urls>"],
"host_permissions": ["<all_urls>"],
"browser_specific_settings": {
"gecko": { "id": "{2dd9ed48-f8c2-49c6-af63-1497e5c38763}" },
"gecko_android": { "id": "{317dfb2a-a2a2-4c60-aaaf-866cbff4145f}" }
},
"default_locale": "en",
"description": "__MSG_extensionDescription__",
"homepage_url": "https://github.com/uiolee/get_cookies",
"host_permissions": ["<all_urls>"],
"icons": {
"16": "icons/favicon-16x16.png",
"32": "icons/favicon-32x32.png",
"180": "icons/apple-touch-icon.png",
"192": "icons/android-chrome-192x192.png",
"512": "icons/android-chrome-512x512.png"
},
"action": {
"default_area": "navbar",
"default_title": "__MSG_extensionName__",
"default_popup": "pages/popup.html",
"default_icon": {
"16": "icons/favicon-16x16.png",
"32": "icons/favicon-32x32.png",
"180": "icons/apple-touch-icon.png",
"192": "icons/android-chrome-192x192.png",
"512": "icons/android-chrome-512x512.png"
}
},
"options_ui": {
"page": "pages/options.html",
"open_in_tab": false
}
"manifest_version": 3,
"name": "__MSG_extensionName__",
"optional_permissions": ["activeTab", "cookies", "<all_urls>"],
"options_ui": { "open_in_tab": false, "page": "pages/options.html" },
"permissions": ["activeTab", "cookies"],
"version": "0.5.0"
}

0 comments on commit 145b2d5

Please sign in to comment.