-
-
Notifications
You must be signed in to change notification settings - Fork 86
Expand file tree
/
Copy pathguland_VIP.js
More file actions
28 lines (26 loc) · 811 Bytes
/
guland_VIP.js
File metadata and controls
28 lines (26 loc) · 811 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import { UfsGlobal } from "./content-scripts/ufs_global.js";
import { BADGES } from "./helpers/badge.js";
export default {
icon: "https://guland.vn/bds/img/apple-touch-icon.png",
name: {
en: "Guland VIP",
vi: "Guland VIP - Xem quy hoạch đất",
},
description: {
en: "VIP for Guland.vn, view map without restriction",
vi: "Xem quy hoạch đất không bị làm phiền bởi popup vip tại Guland.vn",
img: "/scripts/guland_VIP.png",
},
badges: [BADGES.new],
infoLink: "https://guland.vn",
changeLogs: {
"2024-07-14": "init",
},
whiteList: ["https://guland.vn/*"],
contentScript: {
onDocumentStart: (details) => {
UfsGlobal.DOM.deleteElements(".modal-backdrop");
UfsGlobal.DOM.deleteElements("#Modal-NotificationWithButton");
},
},
};