A simple plugin for download Lemon8`s image and video.
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": "__MSG_extensionName__",
"version": "1.0.0",
"description": "__MSG_extensionDesc__",
"default_locale": "en",
"icons": {
"16": "images/icon.png",
"48": "images/icon.png",
"128": "images/icon.png"
},
"action": {
"default_icon": "images/icon.png",
"default_popup": "action-popup.html"
},
"background": {
"service_worker": "scripts/service-worker.js"
},
"content_scripts": [
{
"matches": [
"https://*.lemon8-app.com/*"
],
"js": [
"scripts/content-script.js"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
{
"resources": [
"images/download.png"
],
"matches": [
"https://*.lemon8-app.com/*"
]
}
],
"permissions": [
"activeTab",
"tabs",
"downloads",
"storage",
"scripting"
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}