Manager Friends Request

Manager Friends Request on Facebook

Τι είναι το Manager Friends Request;

Το Manager Friends Request είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Extensions, και η κύρια λειτουργία του είναι "Manager Friends Request on Facebook".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Manager Friends Request

Λήψη αρχείων επέκτασης Manager Friends Request σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Extension Manager Friends Request is a web browser extension designed to help you manage friend requests on social networks. This utility provides the functions of accepting and rejecting a series of friend requests quickly and conveniently. Below is a description of the function of Extension Manager Friends Request:

User interface:

The utility provides an easy-to-use and user-friendly graphical interface.
The interface is minimalistic and clearly arranged, making it easy for users to find functions.
Manage friend requests:

Extension Manager Friends Request automatically searches and displays a list of friend requests you receive on social networks.
The friend request list is displayed with basic information about the requester such as name, picture, and some other profile information.
Accept batch of friend requests:

Users can select multiple friend requests at once to accept.
Once the requests have been selected, you can use the "Accept" function to accept them all automatically.
The process of accepting requests will happen quickly, saving you time and effort compared to accepting requests one by one.
Bulk rejection of friend requests:

Users can select multiple friend requests at once to decline.
Once the requests have been selected, you can use the "Decline" function to reject all of them automatically.
Request denial is quick, making it easy to weed out unwanted requests.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Manager Friends Request Manager Friends Request
ID eagmlcjbjdibgnmgdnndheeemagfdecf
Επίσημο URL https://chromewebstore.google.com/detail/manager-friends-request/eagmlcjbjdibgnmgdnndheeemagfdecf
Περιγραφή Manager Friends Request on Facebook
Μέγεθος Αρχείου 504 KB
Αριθμός Εγκαταστάσεων 107
Τρέχουσα Έκδοση 0.0.1
Τελευταία Ενημέρωση 2023-06-27
Ημερομηνία Δημοσίευσης 2023-06-27
Αξιολόγηση 1.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής Extensions
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
URL της Σελίδας Πολιτικής Απορρήτου https://sites.google.com/view/manage-request/home
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Manager Friends Request",
    "version": "0.0.1",
    "description": "Manager Friends Request on Facebook",
    "action": {
        "default_icon": ".\/assets\/icons-128.png",
        "default_popup": ".\/dist\/popup\/index.html"
    },
    "options_ui": {
        "page": ".\/dist\/options\/index.html",
        "open_in_tab": true
    },
    "background": {
        "service_worker": ".\/dist\/background\/index.mjs"
    },
    "icons": {
        "16": ".\/assets\/icons-128.png",
        "48": ".\/assets\/icons-128.png",
        "128": ".\/assets\/icons-128.png"
    },
    "permissions": [
        "declarativeNetRequest"
    ],
    "host_permissions": [
        "https:\/\/*.facebook.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.facebook.com\/*"
            ],
            "js": [
                ".\/dist\/contentScripts\/index.global.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "dist\/contentScripts\/style.css"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}