-
Notifications
You must be signed in to change notification settings - Fork 0
/
background.js
48 lines (41 loc) · 1.35 KB
/
background.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
40
41
42
43
44
45
46
47
48
chrome.action.onClicked.addListener(async (tab) => {
const [tabInfo] = await chrome.tabs.query({ active: true, currentWindow: true });
const tabId = tabInfo.id;
chrome.scripting.executeScript({
target: { tabId: tabId },
function: detectAndDisplayFiles
});
});
function detectAndDisplayFiles() {
const anchors = Array.from(document.getElementsByTagName('a'));
const sitemapKeywords = ['sitemap.xml', 'plan-du-site.xml'];
const robotsTxtKeywords = ['robots.txt'];
let sitemapUrl = findFileUrl(anchors, sitemapKeywords);
let robotsTxtUrl = findFileUrl(anchors, robotsTxtKeywords);
if (sitemapUrl) {
fetchAndDisplay(sitemapUrl);
} else {
displayContent('Aucune référence à sitemap.xml trouvée sur cette page');
}
if (robotsTxtUrl) {
fetchAndDisplay(robotsTxtUrl);
} else {
displayContent('Aucune référence à robots.txt trouvée sur cette page');
}
}
function findFileUrl(elements, keywords) {
for (const element of elements) {
const href = element.getAttribute('href');
if (href) {
for (const keyword of keywords) {
if (href.includes(keyword)) {
return new URL(href, window.location.href).href;
}
}
}
}
return null;
}
function fetchAndDisplay(url) {
// Logique pour récupérer et afficher le contenu du fichier
}