PolyExtend
Extend your stream experience
PolyExtend क्या है?
PolyExtend PolyDev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Extend your stream experience"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में PolyExtend एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
PolyExtend is a browser extension which adds extra features and tweaks to the live streaming websites Twitch and Beam. Some of the features it adds: - Twitch emotes on Beam - Custom channel emotes for non-partners - Message beautifier for StreamLink - Randomized username colors - Hide user avatars in chat (Beam only) - Show uploaded channel thumbnails (Beam only)
एक्सटेंशन की मूल जानकारी
नाम | |
ID | cemfleddjlllfepdhabmmelmemodfjbf |
आधिकारिक URL | https://chromewebstore.google.com/detail/polyextend/cemfleddjlllfepdhabmmelmemodfjbf |
विवरण | Extend your stream experience |
फ़ाइल का आकार | 63.04 KB |
स्थापना संख्या | 46 |
वर्तमान संस्करण | 1.1.5 |
अंतिम अपडेट | 2016-05-15 |
प्रकाशन तिथि | 2016-05-15 |
रेटिंग | 4.33/5 कुल 6 रेटिंग्स |
डेवलपर | PolyDev |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://extend.dinu.ga/ |
सहायता पृष्ठ URL | https://github.com/Tromino/PolyExtend/issues |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "PolyExtend", "description": "Extend your stream experience", "version": "1.1.5", "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "*:\/\/*.beam.pro\/*" ], "js": [ "js\/lib\/jquery.js", "js\/lib\/observe.js", "js\/lib\/bigint.js", "js\/main.js", "js\/beam.js", "js\/feat\/styles.js", "js\/feat\/thumbnails.js", "js\/feat\/devatars.js", "js\/feat\/mentions.js", "js\/feat\/emotes.js", "js\/feat\/images.js", "js\/feat\/beamlink.js", "js\/feat\/teams.js", "js\/feat\/colors.js", "js\/feat\/deleted.js" ] }, { "matches": [ "*:\/\/*.twitch.tv\/*" ], "js": [ "js\/lib\/jquery.js", "js\/lib\/observe.js", "js\/lib\/bigint.js", "js\/main.js", "js\/twitch.js", "js\/feat\/styles.js", "js\/feat\/thumbnails.js", "js\/feat\/devatars.js", "js\/feat\/mentions.js", "js\/feat\/emotes.js", "js\/feat\/images.js", "js\/feat\/beamlink.js", "js\/feat\/teams.js", "js\/feat\/colors.js", "js\/feat\/deleted.js" ] } ], "page_action": { "default_title": "PolyExtend Settings", "default_popup": "popup.html" }, "background": { "scripts": [ "js\/background.js" ], "persistent": false } } |