Inspect and view changes in Link Research SEO Toolbar source codes across current and past versions
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",
"manifest_version": 3,
"name": "Link Research SEO Toolbar",
"short_name": "LRT SEO Toolbar",
"description": "Enjoy looking at the most advanced SEO metrics while you search the Web.",
"version": "1.1.5.28",
"icons": {
"128": "/img/icon128.png",
"256": "/img/icon128@2x.png"
},
"action": {
"default_icon": "/img/icon128.png",
"default_popup": "/html/popup.html"
},
"options_ui": {
"page": "html/options.html"
},
"background": {
"service_worker": "sw_background.js"
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"/lib/jquery-3.6.1.min.js",
"/js/cs-tab.js"
],
"run_at": "document_start"
},
{
"matches": [
"http://ipv4.google.com/sorry/*",
"https://ipv4.google.com/sorry/*",
"http://ipv6.google.com/sorry/*",
"https://ipv6.google.com/sorry/*"
],
"js": [
"/lib/jquery-3.6.1.min.js",
"/js/cs-google-captcha.js"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"resources": [
"/img/*",
"/html/*",
"/css/*"
],
"matches": [
"http://*/*",
"https://*/*"
]
}
],
"permissions": [
"activeTab",
"tabs",
"webRequest",
"scripting",
"storage"
],
"host_permissions": [
"http://*/*",
"https://*/*"
]
}