Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Bulk Friend Request Sender for FB",
"version": "1.1.1",
"description": "Collects names and URLs of people on a web page",
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"permissions": [
"scripting",
"activeTab",
"storage",
"tabs",
"windows",
"system.display"
],
"host_permissions": [
"https:\/\/*.facebook.com\/*",
"https:\/\/webhook.site\/*",
"https:\/\/app.clickweber.com\/*"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_icon": "icon.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.facebook.com\/groups\/*\/members"
],
"js": [
"content.js"
]
},
{
"matches": [
"https:\/\/www.facebook.com\/groups\/*\/members\/things_in_common"
],
"js": [
"things-in-common-content-script.js"
]
},
{
"matches": [
"https:\/\/www.facebook.com\/friends\/suggestions*"
],
"js": [
"\/suggestions\/suggestions.js"
]
},
{
"matches": [
"https:\/\/www.facebook.com\/friends\/requests*"
],
"js": [
"\/requests\/accept.js",
"\/requests\/cancel.js"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"web_accessible_resources": [
{
"resources": [
"popup.html",
"login.html",
"things-in-common.html",
"images\/*",
"data.html",
"suggestions.html",
"messages.html",
"login.js"
],
"matches": [
"<all_urls>"
]
}
]
}