-
Notifications
You must be signed in to change notification settings - Fork 0
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 #50 from muly/chrome-extn-deployment-cleanup
Chrome extn deployment cleanup
- Loading branch information
Showing
11 changed files
with
165 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,17 @@ | ||
|
||
# ide related | ||
.vscode | ||
.DS_Store | ||
|
||
# generated by deployment scripts | ||
product-track | ||
app.yaml | ||
product-track | ||
product-track.exe | ||
*.zip | ||
chrome-exten/manifest.json | ||
|
||
# | ||
# no secrets | ||
secrets | ||
|
||
.vscode | ||
.DS_Store | ||
# no dependencies, as some of the dependencies are private repos | ||
vendor/* | ||
|
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,59 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Privacy Policy</title> | ||
<style> | ||
body { | ||
font-family: Arial, sans-serif; | ||
line-height: 1.6; | ||
max-width: 600px; | ||
margin: 20px auto; | ||
padding: 0 20px; | ||
color: #333; | ||
} | ||
|
||
p { | ||
margin-bottom: 15px; | ||
} | ||
|
||
ul { | ||
list-style-type: square; | ||
margin-bottom: 15px; | ||
} | ||
|
||
a { | ||
color: #007BFF; | ||
text-decoration: none; | ||
} | ||
|
||
a:hover { | ||
text-decoration: underline; | ||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
<p>This Privacy Policy outlines our data collection and usage practices for the use of our Chrome extension:</p> | ||
|
||
<ul> | ||
<li>User's email address is collected for sending requested product updates.</li> | ||
<li>Pincodes/zipcodes are collected to track availability of the product that the user requested</li> | ||
</ul> | ||
|
||
<p>No cookies or ad networks are utilized.</p> | ||
|
||
<p>Data collection occurs when user uses our Chrome extension.</p> | ||
|
||
<p>Currently, there is no explicit opt-out option. For concerns, contact us.</p> | ||
|
||
<p>Users can request data deletion or download by contacting us. We are actively working on implementing a process for this.</p> | ||
|
||
<p>Email: <a href="mailto:[email protected]">[email protected]</a></p> | ||
|
||
<p>This Privacy Policy was last updated on Dec 20, 2023.</p> | ||
</body> | ||
|
||
</html> |
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 |
---|---|---|
|
@@ -37,3 +37,5 @@ body { | |
|
||
|
||
|
||
|
||
|
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,9 @@ | ||
#!/bin/sh | ||
set -x | ||
set -e | ||
|
||
export CLIENT_ID="" | ||
export CHROME_EXT_VERSION=$1 | ||
|
||
envsubst < chrome-exten/manifest.json.tmpl > chrome-exten/manifest.json | ||
zip chrome-exten.zip chrome-exten/* |
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,9 @@ | ||
#!/bin/sh | ||
set -x | ||
set -e | ||
|
||
export CLIENT_ID='"client_id": "149500152182-1nlfm111isrv0c8828mg3u16q22l434q.apps.googleusercontent.com",' | ||
export KEY='"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxk66E7tDSLL2ZqxhrAHpJOXRxmwSxCSSyRSzYjgx6B150ZdyGe1lAQWOkMfN4h1aK679mJaNTXRWllvxRNaZ+qNagZoy+96/57H7Au+RnX7U7NPv79jVxNq1fDI/hFp5tVZ1cGS31gNeZewR5cPvsTkekHSNFZv8isUtyDomwsRJrxrvIj1a1sL2O9w70aWcfZ/m8eu2gOWWtzfpOuB6K79DAUHw0xBOJ4pykgfYOfrDeZqrZbEzT0Y5d1kACTdg/h7WrE1KPWe0lUJfs7yvf7wMdjOEORR5Dl9i2DCq4ugHsYWMeQ8KmMSBqrlCLnAWFJ9hxhYCa9UJC6i7PaYncQIDAQAB",' | ||
export CHROME_EXT_VERSION=$1 | ||
|
||
envsubst < chrome-exten/manifest.json.tmpl > chrome-exten/manifest.json |