FaceBook Auto Liker

Automatically likes posts on Facebook

FaceBook Auto Liker là gì?

FaceBook Auto Liker là một tiện ích mở rộng Chrome được phát triển bởi Add-A-Site, và tính năng chính của nó là "Automatically likes posts on Facebook".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng FaceBook Auto Liker

Tải xuống các tệp mở rộng FaceBook Auto Liker dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên FaceBook Auto Liker FaceBook Auto Liker
ID oiingllfcgnacdnhmmgaoehdhmcekmaj
URL Chính Thức https://chromewebstore.google.com/detail/facebook-auto-liker/oiingllfcgnacdnhmmgaoehdhmcekmaj
Mô tả Automatically likes posts on Facebook
Kích Thước Tệp 1.22 MB
Số Lần Cài Đặt 81
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2024-01-07
Ngày Phát Hành 2023-12-22
Đánh Giá 1.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Add-A-Site
Email [email protected]
Loại Thanh Toán in_app
Trang Web Mở Rộng https://github.com/AddaSiteApps/FaceBookAutoLiker
URL Trang Trợ Giúp https://github.com/AddaSiteApps/FaceBookAutoLiker
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}