Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Website Sitemap Viewer",
"version": "1.3.9",
"author": "Rakshan Manvaith",
"description": "Explore and export sitemaps, check broken links, filter by date, and analyze website structure \u2014 all in your browser.",
"permissions": [
"activeTab",
"scripting",
"storage"
],
"host_permissions": [],
"action": {
"default_popup": "src\/popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"options_page": "src\/options.html",
"background": {
"service_worker": "assets\/background.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"assets\/content.js"
],
"run_at": "document_idle"
}
],
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"web_accessible_resources": [
{
"resources": [
"assets\/*"
],
"matches": [
"<all_urls>"
]
}
]
}