Chrome Extension for Lendotics.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "Lendotics",
"version": "1.63",
"description": "Chrome Extension for Lendotics.",
"content_scripts": [
{
"matches": [
"https://mail.google.com/*"
],
"js": [
"jquery.min.js",
"content.js"
],
"css": [
"styles.css"
],
"run_at": "document_idle"
}
],
"permissions": [
"activeTab",
"storage",
"scripting"
],
"host_permissions": [
"https://mail.google.com/"
],
"background": {
"service_worker": "background.js"
},
"icons": {
"16": "images/logo16.png",
"32": "images/logo32.png",
"48": "images/logo32.png",
"128": "images/logo192.png"
},
"action": {
"default_icon": {
"16": "images/logo16.png",
"24": "images/logo32.png",
"32": "images/logo32.png"
},
"default_title": "Lendotics",
"default_popup": "popup.html"
}
}