-
-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathfb_blockSeenStory.js
39 lines (36 loc) · 1.15 KB
/
fb_blockSeenStory.js
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
29
30
31
32
33
34
35
36
37
38
39
import { UfsGlobal } from "./content-scripts/ufs_global.js";
import { BADGES } from "./helpers/badge.js";
import { hookXHR } from "./libs/ajax-hook/index.js";
export default {
icon: '<i class="fa-solid fa-user-ninja fa-lg"></i>',
name: {
en: "👀 Block seen story facebook",
vi: '👀 Chặn "Đã xem" story facebook',
},
description: {
en: "Block 'Seen' story in facebook. Your friend will not know that you have seen his/her stories.",
vi: "Chặn 'Đã xem' cho story facebook. Bạn bè sẽ không biết được bạn đã xem story của họ.",
},
badges: [BADGES.new],
changeLogs: {
"2024-05-31": "init",
},
whiteList: ["https://*facebook.com/*"],
pageScript: {
onDocumentStart_: (details) => {
hookXHR({
onBeforeSend: ({ method, url, async, user, password }, dataSend) => {
if (
method === "POST" &&
dataSend?.toString?.()?.includes?.("storiesUpdateSeenStateMutation")
) {
UfsGlobal.DOM.notify({
msg: "Useful script: facebook story seen BLOCKED",
});
return null;
}
},
});
},
},
};