Don't forget to like

Don't forget to like your favorite videos on youtube.com!

Don't forget to like क्या है?

Don't forget to like arismelachroinos द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Don't forget to like your favorite videos on youtube.com!"।

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

screenshot

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

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

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

                        This is a simple extension that likes/dislikes Youtube videos that you watch from specific channels that you choose, so you never forget to do it yourself.

Once you install the extension, a button will appear bellow every Youtube video you are watching, where you can choose:
● Manual (Default)
● Auto Like
● Auto Dislike

This extension does not like/dislike videos that you haven't opened, or videos you have watched in the past.

I put a lot of time and effort making this free extension. If you enjoy it and you wish to support me, you can donate via this link:
https://www.paypal.com/donate/?hosted_button_id=BTK97P92ZF29U                    

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

नाम Don't forget to like Don't forget to like
ID kjkjajiikfcoaibbccgmlnikeekjeaka
आधिकारिक URL https://chromewebstore.google.com/detail/dont-forget-to-like/kjkjajiikfcoaibbccgmlnikeekjeaka
विवरण Don't forget to like your favorite videos on youtube.com!
फ़ाइल का आकार 36.54 KB
स्थापना संख्या 18
वर्तमान संस्करण 0.8
अंतिम अपडेट 2022-07-08
प्रकाशन तिथि 2021-10-20
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर arismelachroinos
ईमेल [email protected]
भुगतान के प्रकार free
गोपनीयता नीति पृष्ठ URL https://www.freeprivacypolicy.com/live/2c558424-4917-4625-89ff-5f1d72958783
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Don't forget to like",
    "version": "0.8",
    "description": "Don't forget to like your favorite videos on youtube.com!",
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "webNavigation"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "jquery.js",
                "content.js"
            ]
        }
    ],
    "icons": {
        "128": "icon.png"
    }
}