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": "Leedlime: Save leads from Reddit",
"version": "1.0.1",
"description": "Collect and manage valuable leads directly from Reddit posts and comments.",
"permissions": [
"storage",
"activeTab",
"sidePanel"
],
"host_permissions": [
"*:\/\/www.reddit.com\/*",
"*:\/\/old.reddit.com\/*"
],
"content_scripts": [
{
"matches": [
"*:\/\/www.reddit.com\/*",
"*:\/\/old.reddit.com\/*"
],
"js": [
"content.js",
"sidepanel.js"
],
"run_at": "document_idle"
}
],
"side_panel": {
"default_path": "sidepanel.html",
"js": [
"sidepanel.js"
]
},
"icons": {
"16": "icons\/leedlime-icon-16.png",
"32": "icons\/leedlime-icon-32.png",
"48": "icons\/leedlime-icon-48.png",
"128": "icons\/leedlime-icon-128.png"
},
"action": {
"default_icon": {
"16": "icons\/leedlime-icon-16.png",
"32": "icons\/leedlime-icon-32.png",
"48": "icons\/leedlime-icon-48.png",
"128": "icons\/leedlime-icon-128.png"
},
"default_title": "Leedlime"
},
"background": {
"service_worker": "background.js"
},
"web_accessible_resources": [
{
"resources": [
"icons\/leedlime-icon.svg"
],
"matches": [
"*:\/\/www.reddit.com\/*",
"*:\/\/old.reddit.com\/*"
]
}
]
}