FaceBook Auto Liker

Automatically likes posts on Facebook

FaceBook Auto Liker क्या है?

FaceBook Auto Liker Add-A-Site द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically likes posts on Facebook"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में FaceBook Auto Liker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This Chrome extension will automatically like your FB friends posts. Once installed and activated (by clicking the extension's icon while viewing https://facebook.com), it will automatically refresh the current tab at a random interval you define and then automatically click the Like button. If unregistered, the extension will only like 5 posts a day.

To reach the options page for this extension, simply hover over the extension's icon, right-click it, and select "Options":

Features

*  Only runs during specified hours
*  After a refresh occurs, support for an artificial delay before a click event is triggered
*  If multiple elements are matched, support for a delay (in milliseconds) between the first clicked item, and the second, and so on
*  Ability to like only certain friend’s posts
*  Ensure that the extension won’t like a post containing disallowed words
*  Only like posts with a minimum number of existing likes or reactions                    

एक्सटेंशन की मूल जानकारी

नाम FaceBook Auto Liker FaceBook Auto Liker
ID oiingllfcgnacdnhmmgaoehdhmcekmaj
आधिकारिक URL https://chromewebstore.google.com/detail/facebook-auto-liker/oiingllfcgnacdnhmmgaoehdhmcekmaj
विवरण Automatically likes posts on Facebook
फ़ाइल का आकार 1.22 MB
स्थापना संख्या 81
वर्तमान संस्करण 1.0.1
अंतिम अपडेट 2024-01-07
प्रकाशन तिथि 2023-12-22
रेटिंग 1.00/5 कुल 1 रेटिंग्स
डेवलपर Add-A-Site
ईमेल [email protected]
भुगतान के प्रकार in_app
एक्सटेंशन वेबसाइट https://github.com/AddaSiteApps/FaceBookAutoLiker
सहायता पृष्ठ URL https://github.com/AddaSiteApps/FaceBookAutoLiker
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "FaceBook Auto Liker",
    "version": "1.0.1",
    "description": "Automatically likes posts on Facebook",
    "permissions": [
        "activeTab",
        "scripting",
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "16": "images\/icon-16.png",
            "48": "images\/icon-48.png",
            "128": "images\/icon-128.png"
        }
    },
    "options_page": "options.html",
    "icons": {
        "16": "images\/icon-16.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ],
            "run_at": "document_idle"
        }
    ]
}