Correct Pause
Extension to fix YouTube Spacebar play/pause function
Correct Pause क्या है?
Correct Pause Aljo द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Extension to fix YouTube Spacebar play/pause function"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Correct Pause एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension was made by MrQuackDuck, not me (Aljo). The reason it's under my name is because I bought a chrome developer account, and offered to publish the extension while giving full credit to the original developer. After a recent update, YouTube is now having an issue with pressing Spacebar to play/pause the video after Alt+Tab and in cases when you're unfocused from the videoplayer. This browser extension is here to fix this. Source code: https://github.com/MrQuackDuck/CorrectPause Check out more stuff on https://justempire.net Support mail: [email protected]
एक्सटेंशन की मूल जानकारी
नाम | Correct Pause |
ID | bcbjldkfkgpipahfcghnjcmcjnhmigpg |
आधिकारिक URL | https://chromewebstore.google.com/detail/correct-pause/bcbjldkfkgpipahfcghnjcmcjnhmigpg |
विवरण | Extension to fix YouTube Spacebar play/pause function |
फ़ाइल का आकार | 8.39 KB |
स्थापना संख्या | 366 |
वर्तमान संस्करण | 1.6 |
अंतिम अपडेट | 2024-01-26 |
प्रकाशन तिथि | 2023-11-16 |
रेटिंग | 4.60/5 कुल 20 रेटिंग्स |
डेवलपर | Aljo |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://justempire.net |
सहायता पृष्ठ URL | https://github.com/MrQuackDuck/CorrectPause |
गोपनीयता नीति पृष्ठ URL | https://justempire.net/en/service/14/correct-youtube-pause |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Correct Pause", "version": "1.6", "permissions": [ "scripting" ], "host_permissions": [ "*:\/\/youtube.com\/*" ], "description": "Extension to fix YouTube Spacebar play\/pause function", "icons": { "32": "icons\/correctPause-32.png", "48": "icons\/correctPause-48.png", "64": "icons\/correctPause-64.png", "128": "icons\/correctPause-128.png" }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "correctPause.js" ] } ] } |