Your Auto Liker

Automatically like or dislike videos from Youtube.

Your Auto Liker란 무엇입니까?

Your Auto Liker은(는) https://fbfdestro.github.io/YourAutoLiker에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically like or dislike videos from Youtube."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Download the extension on your browser to like videos that you watch from your favorites channels automatically 

LIKE ALL VIDEOS FUNCTIONALITY ADDED!

The extension was built to help you never forget to like or dislike videos from channels that you already know. 

To use the extension you only need to click in the icon on the top right corner of your browser while watching youtube videos. 
While you are watching a video or on a channel's page, it's possible to add this channel to the list "always like or dislike videos from this channel".

Know more about the extension on our website: https://fbfdestro.github.io/YourAutoLiker/                    

확장 프로그램 기본 정보

이름 Your Auto Liker Your Auto Liker
ID akbbabbhifekchhpijcbmicndgbeahoi
공식 URL https://chrome.google.com/webstore/detail/your-auto-liker/akbbabbhifekchhpijcbmicndgbeahoi
설명 Automatically like or dislike videos from Youtube.
파일 크기 194 KB
설치 횟수 2,000
현재 버전 0.1.5
최근 업데이트 2021-04-17
출시 날짜 2020-02-28
평점 2.80/5 총 60 개의 평점
개발자 https://fbfdestro.github.io/YourAutoLiker
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://fbfdestro.github.io/YourAutoLiker/
지원되는 언어 en,pt-BR
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "short_name": "__MSG_appShortName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "version": "0.1.5",
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*",
                "https:\/\/fbfdestro.github.io\/YourAutoLiker\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "options_ui": {
        "open_in_tab": true,
        "page": "pages\/configuration.html"
    },
    "browser_action": {
        "default_icon": "imgs\/icon.png",
        "default_title": "Your Auto Liker - Reaga a esse canal",
        "default_popup": "popup\/popup.html"
    },
    "icons": {
        "256": "imgs\/icon.png"
    },
    "permissions": [
        "tabs",
        "storage"
    ]
}