YouTube Auto Liker

Automatically like videos on YouTube

YouTube Auto Likerคืออะไร?

YouTube Auto Liker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Hamtech และคุณลักษณะหลักของมันคือ "Automatically like videos on YouTube"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube Auto Liker

ดาวน์โหลดไฟล์ส่วนขยาย YouTube Auto Liker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension will like YouTube videos that you are currently watching automatically after a set amount of time (10 second default). This will help to support YouTube creators that you follow so they can keep creating the content you enjoy!

If you like what you see and want to help support me as a developer https://www.buymeacoffee.com/krishamade

Reviews are Appreciated as well!
PATCH NOTES
v4.1.2
- Added version number back to popup window
- Reduced gitlab.com permissions thanks to the suggestion of a reviewer!

v4.1.1
- Found an issue with how I was distributing the chrome extension to the chrome store. I was including the entire built repository which contained the node_modules folder. This was causing the extension to go from around 600KB to 50MB+. Sorry for the trouble!

v4.1.0
- Fixed many bugs. Pretty much re-wrote the whole thing to increase functionality and stability
- Built in remote updating config feature. Hopefully this will let us update the html elements remotely.
- Improved the popup UI. NO MORE SAVE BUTTON. Also.. a toggle button.

v3.0.3
- Fixed bug with detecting html attributes in other languages

v3.0.2
- Added Sentry alerting for when errors occur. This should allow me to be aware the extension is failing much faster than before!
- Removed background script as it was not necessary and causing issues.
- Fixed issue with like button not being detected.

v2.4.1
- Resolved issue with Like not being clicked. YouTube changed the html for the like button. See code change.

v2.4
- Version number displays in popup window
- Video will not be liked while ads playing
- Extension tracks time better. This is between soft reloads (autoplay / clicking a new video)
- Extension calculates time video has been played ONLY when it is playing instead of just a timer.
- Video WILL NOT be liked when it is disliked

v2.1
- Checks for Ads before attempting to like the video

v2.0.1
- Bug Fixes

V2.0
- Added new context menu when clicking the extension icon. This will give you a menu with the following options:
- Set Like Delay Timer
- Enable/Disable                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ YouTube Auto Liker YouTube Auto Liker
ID ldkeognhcefepbniijaohbngclhmgjbn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/youtube-auto-liker/ldkeognhcefepbniijaohbngclhmgjbn
คำอธิบาย Automatically like videos on YouTube
ขนาดไฟล์ 186 KB
จำนวนการติดตั้ง 1,056
เวอร์ชันปัจจุบัน 4.1.2
อัปเดตครั้งล่าสุด 2024-02-15
วันที่เผยแพร่ 2022-04-06
คะแนน 4.00/5 รวมทั้งหมด 30 คะแนน
ผู้พัฒนา Hamtech
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://gitlab.com/krishamade/youtubevideoliker
URL หน้าช่วยเหลือ https://gitlab.com/krishamade/youtubevideoliker/-/issues
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "YouTube Auto Liker",
    "description": "Automatically like videos on YouTube",
    "version": "4.1.2",
    "icons": {
        "16": "\/icons\/16x16.png",
        "48": "\/icons\/48x48.png",
        "128": "\/icons\/128x128.png"
    },
    "action": {
        "default_icon": "\/icons\/48x48.png",
        "default_popup": "\/html\/popup.html"
    },
    "background": {
        "service_worker": "\/dist\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "\/dist\/content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/gitlab.com\/krishamade\/youtubevideoliker\/raw\/main\/config.json"
    ]
}