Use with myPresences to submit presences and automatically set data when adding and updating your information online.
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": "myPresences Agent",
"description": "Use with myPresences to submit presences and automatically set data when adding and updating your information online.",
"version": "3.0.0",
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"jquery.3.6.0.min.js",
"cropper.1.5.12.min.js",
"noty.3.1.4.min.js",
"content_script.js"
],
"css": [
"cropper.1.5.12.min.css",
"noty.3.1.4.min.css"
],
"all_frames": true,
"run_at": "document_idle"
}
],
"permissions": [
"activeTab",
"tabs",
"contextMenus",
"clipboardWrite"
],
"host_permissions": [
"https://ajax.googleapis.com/",
"https://app.mypresences.com/",
"https://127.0.0.1:8080/"
],
"icons": {
"16": "mypresences_icon_16.png",
"48": "mypresences_icon_48.png",
"128": "mypresences_icon_128.png"
},
"action": {
"default_icon": "icon-19x19.png",
"default_popup": "popup.html"
}
}