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": "Rank Monitor by WebLens",
"version": "1.0",
"description": "Simulate SEO searches with custom parameters",
"permissions": [
"activeTab"
],
"host_permissions": [
"https:\/\/*.google.com\/*",
"https:\/\/*.google.co.uk\/*",
"https:\/\/*.google.com.au\/*",
"https:\/\/*.google.ca\/*"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_icon": "weblens.png"
},
"web_accessible_resources": [
{
"resources": [
"simulator.html"
],
"matches": [
"<all_urls>"
]
}
],
"content_scripts": [
{
"matches": [
"https:\/\/www.google.com\/*",
"https:\/\/www.google.co.uk\/*",
"https:\/\/www.google.com.au\/*",
"https:\/\/www.google.ca\/*"
],
"js": [
"content.js"
],
"all_frames": true
}
],
"icons": {
"128": "weblens.png"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
}
}