Skip to content

Commit e42d8f2

Browse files
committed
Update README, manifest, and URLs to point here
1 parent a97ad0b commit e42d8f2

File tree

4 files changed

+18
-11
lines changed

4 files changed

+18
-11
lines changed

README.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
# Web Activity Time Tracker <a href="https://chrome.google.com/webstore/detail/web-activity-time-tracker/hhfnghjdeddcfegfekjeihfmbjenlomm" rel="nofollow"><img src="https://user-images.githubusercontent.com/768070/51865757-87d45300-2347-11e9-84fd-bafff5b036b2.png" alt="Add to Chrome" style="max-width:100%;"></a>
1+
# Web Activity Time Tracker
2+
3+
[![GitHub license](https://img.shields.io/github/license/noam-sc/web-activity-time-tracker)](https://github.com/noam-sc/web-activity-time-tracker/blob/main/LICENSE)
24

35
Web Activity Time Tracker keeps track of how much time you spend on the web and presents the stats in a useful and intuitive way.
46
You can set a daily visit limit for sites and block it after the expiration of the limit.
@@ -15,11 +17,11 @@ And you can see your overall stats.
1517

1618
![image](https://github.com/Stigmatoz/web-activity-time-tracker/assets/23387046/6ea4547e-8bc6-4df7-ba0c-b5b330117270)
1719

18-
If you have suggestions or problems using the extension, please [submit a bug or a feature request](https://github.com/Stigmatoz/web-activity-time-tracker/issues).
20+
If you have suggestions or problems using the extension, please [submit a bug or a feature request](https://github.com/noam-sc/web-activity-time-tracker/issues).
1921

2022
# Chrome Web Store
2123

22-
Web Activity Time Tracker is available via the official [Chrome Web Store](https://chrome.google.com/webstore/detail/web-activity-time-tracker/hhfnghjdeddcfegfekjeihfmbjenlomm).
24+
Web Activity Time Tracker is not yet available via the official Chrome Web Store.
2325

2426
# Install as an extension from source
2527

@@ -30,7 +32,12 @@ Web Activity Time Tracker is available via the official [Chrome Web Store](https
3032

3133
# Run
3234

33-
`pnpm run dev`
35+
To run the extension in development mode, you can clone the repository and run it locally.
36+
37+
```bash
38+
npm install
39+
npm run dev
40+
```
3441

3542
# License
3643

src/background.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Browser.storage.onChanged.addListener(async (changes, namespace) => {
3030
}
3131
});
3232

33-
Browser.runtime.setUninstallURL('https://webtracker.online/goodbye.html');
33+
Browser.runtime.setUninstallURL('https://github.com/noam-sc/web-activity-time-tracker/');
3434

3535
Browser.runtime.onInstalled.addListener(async details => {
3636
if (details.reason == 'install') {
@@ -50,7 +50,7 @@ Browser.runtime.onInstalled.addListener(async details => {
5050
)) as boolean;
5151
if (showChangelog)
5252
await Browser.tabs.create({
53-
url: 'https://webtracker.online/releasenotes.html',
53+
url: 'https://github.com/noam-sc/web-activity-time-tracker/releases',
5454
active: true,
5555
});
5656
}

src/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 3,
33
"name": "__MSG_extName__",
44
"short_name": "Web Tracker",
5-
"version": "2.2.2",
5+
"version": "1.0.0",
66
"description": "__MSG_extDescription__",
77
"options_page": "src/dashboard.html",
88
"default_locale": "en",

src/utils/chrome-url.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
export const CHROME_STORE_REVIEW_URL = `https://chromewebstore.google.com/detail/web-activity-time-tracker/${__APP_ID__}/reviews`;
2-
export const CHROME_STORE_SUPPORT_URL = `https://chromewebstore.google.com/detail/web-activity-time-tracker/${__APP_ID__}/support`;
1+
export const CHROME_STORE_REVIEW_URL = `https://github.com/noam-sc/web-activity-time-tracker?${__APP_ID__}`;
2+
export const CHROME_STORE_SUPPORT_URL = `https://github.com/noam-sc/web-activity-time-tracker?${__APP_ID__}`;
33
export const CHROME_STORE_CLEAR_YOUTUBE_URL =
4-
'https://chromewebstore.google.com/detail/clean-youtube-update-yout/kalhfjomailhflienkfajocjodgjipie?utm_source=watt';
4+
'https://github.com/noam-sc/web-activity-time-tracker';
55

6-
export const EDGE_STORE_REVIEW_URL = `https://microsoftedge.microsoft.com/addons/detail/web-activity-time-tracker/${__APP_ID__}#review-section`;
6+
export const EDGE_STORE_REVIEW_URL = `https://github.com/noam-sc/web-activity-time-tracker?${__APP_ID__}#review-section`;

0 commit comments

Comments
 (0)