Comment Manager for Youtubers

This is a management tool to change from unhearted to hearted for Youtubers.

Comment Manager for Youtubersคืออะไร?

Comment Manager for Youtubers เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "This is a management tool to change from unhearted to hearted for Youtubers."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Comment Manager for Youtubers

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

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

                        내 채널의 댓글을 쉽게 관리할 수 있는 확장 프로그램입니다.
An extension program to make easy to manage the comments in my channel.

<<사용방법>>
1. Chrome에 확장 프로그램을 설치하기
2. Youtube 접속 시, 우측 하단에 하트 모양의 버튼을 확인하실 수 있어요.
3. 버튼을 눌러서 나의 영상에 등록된 댓글을 일괄로 좋아요 표시를 하실 수 있어요.

<>
1. Install an extension program on chrome
2. Access to Youtube, you can see the heart button in the bottom.
3. You can give hearts for comments by the button.                    

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

ชื่อ Comment Manager for Youtubers Comment Manager for Youtubers
ID dnpjgbekecfjkiejmoldnplafgdcgbjh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/comment-manager-for-youtu/dnpjgbekecfjkiejmoldnplafgdcgbjh
คำอธิบาย This is a management tool to change from unhearted to hearted for Youtubers.
ขนาดไฟล์ 69.97 KB
จำนวนการติดตั้ง 21
เวอร์ชันปัจจุบัน 0.0.1
อัปเดตครั้งล่าสุด 2019-04-01
วันที่เผยแพร่ 2019-04-01
ผู้พัฒนา Unknown
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Comment Manager for Youtubers",
    "version": "0.0.1",
    "description": "This is a management tool to change from unhearted to hearted for Youtubers.",
    "permissions": [
        "https:\/\/www.youtube.com\/",
        "activeTab",
        "storage",
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icons\/16x16.png",
        "32": "icons\/32x32.png",
        "48": "icons\/48x48.png",
        "128": "icons\/128x128.png"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "jquery-3.3.1.min.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "*.js"
    ],
    "manifest_version": 2
}