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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย arismelachroinos และคุณลักษณะหลักของมันคือ "Don't forget to like your favorite videos on youtube.com!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Don't forget to like
ดาวน์โหลดไฟล์ส่วนขยาย Don't forget to like ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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 |
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" } } |