Manage Facebook Marketplace inventory effortlessly from your desktop with the Zen-LITE post scheduler extension.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 3,
"name": "ZenLite - Facebook Post Scheduler",
"description": "Manage Facebook Marketplace inventory effortlessly from your desktop with the Zen-LITE post scheduler extension.",
"version": "0.1.0",
"author": "Vishy & ZenLite Team",
"permissions": [
"scripting",
"activeTab",
"bookmarks",
"storage",
"contextMenus",
"webRequest",
"tabs",
"cookies",
"alarms",
"webNavigation"
],
"icons": {
"48": "zenLiteLogoPlugin.png"
},
"action": {
"default_popup": "popup.html",
"default_icon": "zenLiteLogoPlugin.png"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"contentscript.js"
],
"run_at": "document_idle"
}
],
"host_permissions": [
"https://zenliteinventory.s3.amazonaws.com/*"
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}