YouTube Play/Pause

On Clicking the icon of this extension, it will play/pause the video playing on YouTube.com

YouTube Play/Pauseคืออะไร?

YouTube Play/Pause เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Harshad Mane และคุณลักษณะหลักของมันคือ "On Clicking the icon of this extension, it will play/pause the video playing on YouTube.com"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube Play/Pause

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

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

                        You are listening to songs on YouTube while working and somebody comes to you, now you have to pause YouTube song but it is difficult to find the YouTube tab, or you just don't want your friend to know which song you were listening to.

Answer is simple, use this extension, click on the extension  icon and a pop-up UI will open, click Play/Pause button.

You can also,
 - "Play Next" track with a single click.
 - "Play Previous" track, if you are playing a play lsit.
 - A new button to open existing YouTube tab, if not already opened then it will open a new one
 

AdSkipper:
 - This feature is enabled by default with this extension 
 - This feature will smartly detect ads playing in YouTube, on detecting it will Mute the ad so that you don't hear those
 - Once the Ad shows "Skip Ad" button, the intelligent code will click on the button and will Unmute the video so that you will be able to enjoy the next Video

Feel free to let us know what features you will want!!



More features coming soon.                    

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

ชื่อ YouTube Play/Pause YouTube Play/Pause
ID pmadkkbhfioemnigffhpgjockmoagmdm
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/youtube-playpause/pmadkkbhfioemnigffhpgjockmoagmdm
คำอธิบาย On Clicking the icon of this extension, it will play/pause the video playing on YouTube.com
ขนาดไฟล์ 10.67 KB
จำนวนการติดตั้ง 460
เวอร์ชันปัจจุบัน 0.4.0
อัปเดตครั้งล่าสุด 2019-08-23
วันที่เผยแพร่ 2019-08-19
คะแนน 4.44/5 รวมทั้งหมด 9 คะแนน
ผู้พัฒนา Harshad Mane
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Play\/Pause",
    "version": "0.4.0",
    "description": "On Clicking the icon of this extension, it will play\/pause the video playing on YouTube.com",
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "browser_action": {
        "default_title": "YouTube Play\/Pause with AdSkipper",
        "default_icon": "icon-2.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.youtube.com\/*",
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "ad_skipper.js"
            ],
            "run_at": "document_end"
        }
    ]
}