FaceBook Auto Liker

Automatically likes posts on Facebook

FaceBook Auto Liker란 무엇입니까?

FaceBook Auto Liker은(는) Add-A-Site에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically likes posts on Facebook"입니다.

확장 프로그램 스크린샷

screenshot

FaceBook Auto Liker 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
        }
    ]
}