A Free AI-Powered SEO Toolkit. Look at your site like a crawler and compare metadata, server responses, headlines, content and links
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "SEO All Stars tools: in 1 place ⭐️",
"description": "A Free AI-Powered SEO Toolkit. Look at your site like a crawler and compare metadata, server responses, headlines, content and links",
"version": "1.0",
"manifest_version": 3,
"icons": {
"16": "assets/icons/icon_16.png",
"24": "assets/icons/icon_24.png",
"32": "assets/icons/icon_32.png",
"48": "assets/icons/icon_48.png",
"128": "assets/icons/icon_128.png"
},
"action": {
"default_popup": "popup.html"
},
"permissions": [
"tabs",
"activeTab",
"webRequest",
"scripting",
"storage",
"unlimitedStorage"
],
"host_permissions": [
"<all_urls>"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"helper.js"
]
}
],
"background": {
"service_worker": "background.js",
"type": "module"
}
}