Your Auto Liker

Automatically like or dislike videos from Youtube.

Vad är Your Auto Liker?

Your Auto Liker är en Chrome-tillägg utvecklad av https://fbfdestro.github.io/YourAutoLiker, och dess huvudfunktion är "Automatically like or dislike videos from Youtube.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Your Auto Liker-förlängningens CRX-fil

Ladda ner Your Auto Liker-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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/                    

Grundläggande Information om Tillägg

Namn Your Auto Liker Your Auto Liker
ID akbbabbhifekchhpijcbmicndgbeahoi
Officiell webbadress https://chrome.google.com/webstore/detail/your-auto-liker/akbbabbhifekchhpijcbmicndgbeahoi
Beskrivning Automatically like or dislike videos from Youtube.
Filstorlek 194 KB
Antal Installationer 2,000
Aktuell Version 0.1.5
Senast Uppdaterad 2021-04-17
Publiceringsdatum 2020-02-28
Betyg 2.80/5 Totalt 60 Betyg
Utvecklare https://fbfdestro.github.io/YourAutoLiker
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://fbfdestro.github.io/YourAutoLiker/
Stödda Språk 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"
    ]
}