Skip to content
This repository has been archived by the owner on Sep 8, 2020. It is now read-only.

Commit

Permalink
Merge pull request #52 from nareddyt/fixes-for-v5
Browse files Browse the repository at this point in the history
Various fixes for the release of v5.0.0
  • Loading branch information
nareddyt authored Apr 4, 2018
2 parents ebfe852 + 54402b5 commit d213368
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
- run:
name: "Package Extension"
command: |
zip -r ./build/extension.zip manifest.json src
zip -r ./build/extension.zip manifest.json src/ icon/
# Use workspaces to move files between `build` and `publish`
- persist_to_workspace:
root: /root/project
Expand Down
8 changes: 4 additions & 4 deletions docs/permissions.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,20 @@ Therefore, this extension does NOT store any [personally identifiable informatio
Keep in mind that our extension is [open source](https://github.com/nareddyt/discover-rewards-notifier).
Experienced developers may look through the source code to verify the behaviors described below.

## Access your browsing activity
## Read your browsing history

Discover Rewards Notifier requires permission to view your browsing activity.
Your browsing activity is used to determine which retailer's website you're shopping on, allowing Discover Rewards Notifier to find deals and cashback rewards for that retailer.

_Without permission to view your browsing history, Discover Rewards Notifier won't work at all._

Note: The extension only reads your browsing activity, **not** browsing history.
It will only read the current websites that you have open.
It will only read the current websites that you have open. It will NEVER read your past browsing history.
**As stated in our privacy policy, this data remains on your device and we never collect this data**.

## Read and modify your data on [https://tejunareddy.com](https://tejunareddy.com/discover-rewards-notifier/)
## Read and change your data on [www.tejunareddy.com](https://www.tejunareddy.com/discover-rewards-notifier/)

Discover Rewards Notifier requires permission to access the [Project Website](https://tejunareddy.com/discover-rewards-notifier/).
Discover Rewards Notifier requires permission to access the [Project Website](https://www.tejunareddy.com/discover-rewards-notifier/).
This website has the latest Discover Deals and Cashback Rewards data.
So the extension periodically checks this website to download the latest deals and cashback rewards!

Expand Down
2 changes: 1 addition & 1 deletion src/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ function registerListeners() {
periodInMinutes: REFRESH_DATA_INTERVAL_MINUTES
});

console.warn('Registered all listeners :)');
console.info('Registered all listeners :)');
}

function onAlarmFired(alarm) {
Expand Down

0 comments on commit d213368

Please sign in to comment.