Video Bar
Customizable progress bar for Youtube videos and other web sites
Video Bar क्या है?
Video Bar alikims द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Customizable progress bar for Youtube videos and other web sites"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Video Bar एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Adds a progress bar to YouTube videos and videos on other web sites. This helps, in a non-intrusive way, to keep track of the video progress while all the controls are hidden. The progress bar position, size, colors, timer font and mouse-over behavior can be customized in the options. The page has a live preview of the bar with "Save settings" and "Restore default" buttons. All settings are kept in the local browser's storage. Left mouse click on the extension's icon turns it on/off for each browser's tab.
एक्सटेंशन की मूल जानकारी
नाम | Video Bar |
ID | nediigdbkfmemfcleolaonlpbigjhjhi |
आधिकारिक URL | https://chromewebstore.google.com/detail/video-bar/nediigdbkfmemfcleolaonlpbigjhjhi |
विवरण | Customizable progress bar for Youtube videos and other web sites |
फ़ाइल का आकार | 17.83 KB |
स्थापना संख्या | 99 |
वर्तमान संस्करण | 0.0.7 |
अंतिम अपडेट | 2021-09-20 |
प्रकाशन तिथि | 2021-09-16 |
रेटिंग | 4.67/5 कुल 6 रेटिंग्स |
डेवलपर | alikims |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Video Bar", "version": "0.0.7", "description": "Customizable progress bar for Youtube videos and other web sites", "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_icon": { "16": "ico\/16.png", "48": "ico\/48.png", "128": "ico\/128.png" } }, "permissions": [ "storage" ], "content_scripts": [ { "all_frames": true, "matches": [ "*:\/\/*\/*" ], "js": [ "bar_on.js" ], "run_at": "document_start" } ], "options_ui": { "page": "options.html", "open_in_tab": false }, "icons": { "16": "ico\/16.png", "48": "ico\/48.png", "128": "ico\/128.png" } } |