Maximize Video
Maximize HTML5/Flash video and fill current tab.
Maximize Video क्या है?
Maximize Video ettoolong द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Maximize HTML5/Flash video and fill current tab."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Maximize Video एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Usage: 1. Click on toolbar button 2. Select video that you want to maximize (you can click toolbar button again to cancel) NOTE !!!!!! 1. This extension only maximize video, it can't remove web advertisements for you. If you need remove web advertisements, you can install other extension to do that. 2. No promise to support EVERY video site. If it can't work on specific web site, report to me: https://github.com/ettoolong/MaximizeVideo/issues I will try to fix it ( if I can).
एक्सटेंशन की मूल जानकारी
नाम | Maximize Video |
ID | bfpkgjlnboeecjmnbhbknmemmckmpomb |
आधिकारिक URL | https://chromewebstore.google.com/detail/maximize-video/bfpkgjlnboeecjmnbhbknmemmckmpomb |
विवरण | Maximize HTML5/Flash video and fill current tab. |
फ़ाइल का आकार | 29.12 KB |
स्थापना संख्या | 10,000 |
वर्तमान संस्करण | 0.0.20 |
अंतिम अपडेट | 2022-01-07 |
प्रकाशन तिथि | 2019-12-14 |
रेटिंग | 4.84/5 कुल 45 रेटिंग्स |
डेवलपर | ettoolong |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en,zh-TW |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "__MSG_extDescription__", "manifest_version": 2, "name": "__MSG_extName__", "version": "0.0.20", "homepage_url": "https:\/\/github.com\/ettoolong\/MaximizeVideo", "icons": { "16": "icon\/icon.png", "32": "icon\/icon.png", "48": "icon\/icon.png", "64": "icon\/icon.png", "96": "icon\/icon.png" }, "author": "Ett Chung", "background": { "scripts": [ "js\/background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/\/*" ], "js": [ "js\/content-script.js" ], "css": [ "css\/maximizeVideo.css" ], "all_frames": true, "run_at": "document_start" }, { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "js\/ytb.js" ], "css": [ "css\/ytb.css" ], "all_frames": false, "run_at": "document_start" } ], "browser_action": { "browser_style": true, "default_title": "__MSG_extDescription__", "default_icon": "icon\/icon_b.png" }, "permissions": [ "storage" ], "default_locale": "en", "options_ui": { "page": "options.html", "open_in_tab": false }, "commands": { "maximizeVideo": { "suggested_key": { "default": "Alt+Shift+M" }, "description": "__MSG_execute__" } } } |