Skip to content

Commit

Permalink
show donate
Browse files Browse the repository at this point in the history
  • Loading branch information
HoangTran0410 committed Jul 27, 2024
1 parent c18848e commit fb2a065
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 4 deletions.
8 changes: 6 additions & 2 deletions README-en.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

- [Useful scripts - Chrome extension](#useful-scripts---chrome-extension)
- [Overview](#overview)
- [Demo](#demo)
- [Change logs](#change-logs)
- [ScreenShots](#screenshots)
- [Install](#install)
Expand All @@ -21,19 +22,22 @@ An extension includes a lot of small extensions. Make your life easier.

- Please join [FACEBOOK GROUP](https://www.facebook.com/groups/1154059318582088) of this extension

- View list all scripts [HERE](./md/LIST_SCRIPTS_EN.md)
## Demo

Try online [Here](https://hoangtran0410.github.io/useful-script/popup/popup.html)

## Change logs

[Full change logs](/md/CHANGELOGS.md)

Current Versions:

- **v1.69**: small update (14/07/2024)
- **v1.7**: tiktok update 28/07/2024

<details>
<summary>Old versions</summary>

- <del>v1.69: small update (14/07/2024)</del>
- <del>v1.68: big facebook update (01/07/2024)</del>
- <del>v1.67 - huge update (29/05/2024)</del>
- <del>v1.66 - big update (27/04/2024)</del>
Expand Down
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

- [Useful scripts - Chrome extension](#useful-scripts---chrome-extension)
- [Giới thiệu](#giới-thiệu)
- [Demo](#demo)
- [Phiên bản](#phiên-bản)
- [Ảnh chụp màn hình](#ảnh-chụp-màn-hình)
- [Cài đặt](#cài-đặt)
Expand All @@ -21,19 +22,22 @@ Donate? Muốn hỗ trợ mình 1 ly cafe <3 [Donate tại đây](https://github

- Hãy tham gia ngay [GROUP FACEBOOK](https://www.facebook.com/groups/1154059318582088) của tiện ích

- Xem tất cả chức năng [TẠI ĐÂY](./md/LIST_SCRIPTS_VI.md)
## Demo

Dùng thử online [Tại đây](https://hoangtran0410.github.io/useful-script/popup/popup.html)

## Phiên bản

Xem [Lịch sử cập nhật](/md/CHANGELOGS.md)

Phiên bản hiện tại:

- **v1.69**: small update (14/07/2024)
- **v1.7**: tiktok update 28/07/2024

<details>
<summary>Xem phiên bản cũ hơn</summary>

- <del>v1.69: small update (14/07/2024)</del>
- <del>v1.68: bản cập nhật facebook lớn (01/07/2024)</del>
- <del>v1.67 - bản cập nhật siêu lớn (29/05/2024)</del>
- <del>v1.66 - bản cập nhật lớn (27/04/2024)</del>
Expand Down
38 changes: 38 additions & 0 deletions popup/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1013,6 +1013,43 @@ function initScrollToTop() {
// });
}

async function initShowDonate() {
const clickedDonate = await Storage.get("clickedDonate");
let count = (await Storage.get("openPopupCount")) || 0;
count++;
Storage.set("openPopupCount", count);
if (!clickedDonate && count > 0 && count % 10 === 0) {
const res = await Swal.fire({
icon: "info",
title: t({
vi: "Cảm ơn bạn tin dùng",
en: "Thanks for using Useful-scripts",
}),
text: t({
vi: "Useful-scripts là miễn phí. Nhưng nếu bạn thích nó, bạn có thể hỗ trợ mình 1 ly cà phê. Một đồng cũng đáng quý 💓",
en: "It's free. But you can support me if you like. I'll appreciate if you give me some love 💓",
}),
confirmButtonText: "Donate",
showCancelButton: true,
cancelButtonText: t({ vi: "Để sau", en: "Later" }),
showDenyButton: true,
denyButtonText: t({ vi: "Tặng sao", en: "Star github" }),
reverseButtons: true,
focusConfirm: true,
});
if (res.isConfirmed) {
Storage.set("clickedDonate", true);
window.open(
"https://hoangtran0410.github.io/HoangTran0410/DONATE",
"_blank"
);
}
if (res.isDenied) {
window.open("https://github.com/HoangTran0410/useful-script", "_blank");
}
}
}

function saveScroll() {
const scrollY = window.scrollY;
Storage.set("popupScrollY", scrollY);
Expand Down Expand Up @@ -1056,4 +1093,5 @@ window.addEventListener("scroll", onScrollEnd);
});

checkForUpdate();
initShowDonate();
})();

0 comments on commit fb2a065

Please sign in to comment.