Native FLV Playback
Allow the browser to play FLV video urls (flv) 'natively'
Native FLV Playback क्या है?
Native FLV Playback klouskingsley द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allow the browser to play FLV video urls (flv) 'natively'"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Native FLV Playback एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Allow the browser to play FLV video urls 'natively' This extension is a wrapper around the awesome flv.js library: https://github.com/bilibili/flv.js Clicking on the extension icon will let you play any flv embedded as a video html element in the current page. New: type flv, then tab, then your flv URL to play the URL in the extension. Features: Enable/Disable the url catcher by clicking on the icon. Switch between flv.js 1.5.x, 1.4.x, 1.3.x, 1.2.x, 1.1.x, 1.0.x in the settings. Code repository here: https://github.com/klouskingsley/chrome-flv
एक्सटेंशन की मूल जानकारी
नाम | Native FLV Playback |
ID | fjmoemhemaejfjodjgnpkelbdgejnpgd |
आधिकारिक URL | https://chromewebstore.google.com/detail/native-flv-playback/fjmoemhemaejfjodjgnpkelbdgejnpgd |
विवरण | Allow the browser to play FLV video urls (flv) 'natively' |
फ़ाइल का आकार | 261 KB |
स्थापना संख्या | 2,519 |
वर्तमान संस्करण | 0.12.4 |
अंतिम अपडेट | 2019-05-17 |
प्रकाशन तिथि | 2019-05-12 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | klouskingsley |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Native FLV Playback", "version": "0.12.4", "description": "Allow the browser to play FLV video urls (flv) 'natively'", "manifest_version": 2, "icons": { "128": "img\/icon128.png" }, "background": { "scripts": [ "event.js", "global.js" ] }, "content_security_policy": "script-src 'self' blob:; object-src 'self'", "permissions": [ "tabs", "*:\/\/*\/*.flv*", "webRequest", "webRequestBlocking", "storage" ], "options_ui": { "page": "options.html", "chrome_style": true }, "browser_action": { "default_title": "Disable", "default_icon": "img\/icon128.png", "default_popup": "popup.html" }, "web_accessible_resources": [ "*.js", "*.html" ], "omnibox": { "keyword": "flv" } } |