-
-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #387 from freelawproject/feat-upgrade-to-manifest-v3
- Loading branch information
Showing
39 changed files
with
2,680 additions
and
2,630 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,4 +5,5 @@ coverage | |
/src/recap.zip | ||
/recap-chrome.iml | ||
/.idea/ | ||
.vscode/ | ||
.vscode/ | ||
build/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"trailingComma": "es5", | ||
"printWidth": 120, | ||
"printWidth": 80, | ||
"tabWidth": 2, | ||
"semi": true, | ||
"singleQuote": true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
#!/bin/bash | ||
# Create a browser extension release package | ||
set -e | ||
|
||
# Checks if jq is installed | ||
if ! command -v jq >/dev/null 2>&1; then | ||
echo "jq is not installed. Please install jq before continuing." | ||
exit 1 | ||
fi | ||
|
||
# 1. Capture browser type from argument | ||
browserType=$1 | ||
|
||
# 2. Construct release zip filename | ||
zipName=$browserType-release.zip | ||
|
||
# 3. Rename base manifest file | ||
cd src/ && mv manifest.json manifest.base.json | ||
if [[ "$browserType" == "firefox" ]]; then | ||
faviconUrl='assets/images/favicon.icon' | ||
# Remove unnecessary properties for Firefox manifest | ||
jq 'del(.background.service_worker)' manifest.base.json >manifest.json | ||
else | ||
faviconUrl='https://www.courtlistener.com/static/ico/favicon.ico' | ||
# Remove unnecessary property for Chrome/Chromium manifest | ||
jq 'del(.background.scripts, .browser_specific_settings)' manifest.base.json >manifest.json | ||
fi | ||
|
||
# 4. Add search provider configuration to manifest | ||
jq --arg favicon "$faviconUrl" '.chrome_settings_overrides.search_provider += { | ||
"name": "RECAP Archive", | ||
"search_url": "https://www.courtlistener.com/?type=r&q={searchTerms}&order_by=score+desc", | ||
"favicon_url": $favicon, | ||
"keyword": "recap", | ||
"encoding": "UTF-8", | ||
"is_default": false | ||
}' manifest.json >manifest.tmp && mv manifest.tmp manifest.json | ||
|
||
# 5. Create release package | ||
# - Include all files except the base manifest | ||
zip -rq $zipName * -x "*.base.json" | ||
|
||
# 6. Ensure release directory exists (create if needed) | ||
mkdir -p ../build/release/ | ||
|
||
# 7. Clean up any existing release zip | ||
file="../build/release/$browserType-release.zip" | ||
if [ -f "$file" ] ; then | ||
rm "$file" | ||
fi | ||
|
||
# 8. Move package to release directory | ||
mv $zipName ../build/release | ||
|
||
# 9. Remove Browser-Specific Manifest File | ||
# Rename base manifest back to main manifest | ||
mv manifest.base.json manifest.json |
Oops, something went wrong.