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": "Pesticide Layout Inspector",
"short_name": "Pesticide Inspector",
"description": "Pesticide Layout Inspector enhances web development by outlining page elements",
"version": "1.0",
"permissions": [
"scripting",
"activeTab"
],
"background": {
"service_worker": "background.js"
},
"icons": {
"16": "images\/icon_16.png",
"48": "images\/icon_48.png",
"128": "images\/icon_128.png"
},
"web_accessible_resources": [
{
"resources": [
"pesticide.min.css",
"pesticide.js"
],
"matches": [
"<all_urls>"
]
}
],
"action": {
"default_title": "Toggle Pesticide",
"default_icon": {
"48": "images\/icon_48.png"
}
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content-script.js"
]
}
]
}