Facebook friends engagement analytics and remove in-active friends
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": 2,
"name": "Socialytics",
"short_name": "Socialytics",
"version": "2.0.2",
"description": "Facebook friends engagement analytics and remove in-active friends",
"icons": {
"16": "icons/16.png",
"32": "icons/32.png",
"48": "icons/48.png",
"64": "icons/64.png",
"128": "icons/128.png"
},
"browser_action": {
"default_title": "Socialytics",
"default_popup": "popup.html"
},
"permissions": [
"cookies",
"activeTab",
"storage",
"webRequest",
"webRequestBlocking",
"http://*.facebook.com/*",
"https://*.facebook.com/*"
],
"background": {
"scripts": [
"scripts/background/headers.js",
"scripts/background/app.js",
"scripts/background/friender.js",
"scripts/background/postDelivery.js",
"scripts/background/postsFriends.js",
"scripts/background/cancelRequests.js",
"scripts/background/arcHandler.js",
"scripts/background/cannedResponses.js"
],
"persistent": true
},
"content_scripts": [
{
"matches": [
"*://*.facebook.com/messages/*",
"*://*.facebook.com/*/inbox/*",
"*://*.messenger.com/*"
],
"js": [
"libs/jquery-3.4.1.min.js",
"scripts/content/cannedResponses.js"
]
},
{
"matches": [
"*://m.facebook.com/composer/mbasic/?csid=*"
],
"js": [
"libs/jquery-3.4.1.min.js",
"scripts/content/alternatePhotoUpload.js"
]
},
{
"matches": [
"*://www.facebook.com/*"
],
"js": [
"libs/jquery-3.4.1.min.js",
"scripts/content/alternateInteractions.js"
]
}
]
}