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": "Friend Maker | Toolkit for Facebook", "version": "1.4.18", "description": "Automate Sending Friend Request on Facebook", "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", "things-in-common.html", "images\/*", "data.html", "suggestions.html" ], "matches": [ "<all_urls>" ] } ] }