YTPP
YTPP: YouTube Play/Pause without switching tabs
YTPP क्या है?
YTPP spidergears द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "YTPP: YouTube Play/Pause without switching tabs"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में YTPP एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
YTPP: YouTube Play/Pause Extension lets user play/pause youtube without having to switch tabs. Clicking the extension button toggles playback state for all open youtube tabs.
एक्सटेंशन की मूल जानकारी
नाम | YTPP |
ID | onlhipebedljinheklgalifgbolcmndi |
आधिकारिक URL | https://chromewebstore.google.com/detail/ytpp/onlhipebedljinheklgalifgbolcmndi |
विवरण | YTPP: YouTube Play/Pause without switching tabs |
फ़ाइल का आकार | 10.16 KB |
स्थापना संख्या | 23 |
वर्तमान संस्करण | 0.1 |
अंतिम अपडेट | 2016-11-20 |
प्रकाशन तिथि | 2016-11-20 |
रेटिंग | 3.00/5 कुल 2 रेटिंग्स |
डेवलपर | spidergears |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YTPP", "short_name": "YTPP", "version": "0.1", "description": "YTPP: YouTube Play\/Pause without switching tabs", "icons": { "128": "icon.png", "48": "icon_48.png", "16": "icon_16.png" }, "author": { "name": "spidergears", "twitter_handle": "spider_gears", "github": "http:\/\/github.com\/spidergears" }, "browser_action": { "default_icon": "icon.png", "default_title": "YTPP" }, "permissions": [ "tabs" ], "background": { "scripts": [ "ytpp_background_script.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/www.youtube.com\/*", "https:\/\/www.youtube.com\/*" ], "js": [ "ytpp_content_script.js" ] } ] } |