File size: 2,364 Bytes
0eaca07
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
url_types = {
    "Student Publications": [
        "studentpulse.com",
        "undergraduateresearch.ucsd.edu",
        "jmurj.jmu.edu",
        "cur.org",
        "urj.ucf.edu",
        "ugresearch.umn.edu",
        "undergraduateresearch.wustl.edu",
        "ugresearch.ucla.edu",
        "jur.byu.edu",
        "undergradresearch.ncsu.edu",
    ],
    "Wikihost": [
        "fandom.com",
        "wikidot.com",
        "wikia.org",
        "wikispaces.com",
        "gamepedia.com",
        "wikibooks.org",
        "wikiversity.org",
        "wikitravel.org",
        "wikinews.org",
        "wiktionary.org",
        "wikipedia.org",
    ],
    "Official News": [
        "bbc.com",
        "cnn.com",
        "nytimes.com",
        "reuters.com",
        "theguardian.com",
        "washingtonpost.com",
        "foxnews.com",
        "aljazeera.com",
        "bloomberg.com",
        "npr.org",
    ],
    "Online Learning": [
        "coursera.org",
        "edx.org",
        "udacity.com",
        "udemy.com",
        "khanacademy.org",
        "futurelearn.com",
        "skillshare.com",
        "linkedin.com/learning",
        "pluralsight.com",
        "codecademy.com",
    ],
    "Government Official": [
        "usa.gov",
        "gov.uk",
        "europa.eu",
        "canada.ca",
        "australia.gov.au",
        "india.gov.in",
        "japan.go.jp",
        "korea.go.kr",
        "gov.sg",
        "nz.govt.nz",
        "defense.gov",
        ".gov",
    ],
    "Publications": [
        "scholar.google.com",
        "pubmed.ncbi.nlm.nih.gov",
        "researchgate.net",
        "jstor.org",
        "ieeexplore.ieee.org",
        "sciencedirect.com",
        "arxiv.org",
        "link.springer.com",
        "onlinelibrary.wiley.com",
        "doaj.org",
        "journals.plos.org/plosone",
        "journals.sagepub.com",
        "dl.acm.org",
        "biorxiv.org",
        "tandfonline.com",
    ],
}


plag_script = """
async () => {
    globalThis.toggleDetails = (event) => {
        event.preventDefault(); // Prevent the default link behavior
        let detailsContainer = document.getElementById("detailsContainer");
        if (detailsContainer.style.display === "none") {
            detailsContainer.style.display = "block";
        } else {
            detailsContainer.style.display = "none";
        }
    }
}
"""