Shift Youtube Optimizer
Chrome extension to hide/reduce the number of videos shown on YouTube.
Shift Youtube Optimizer क्या है?
Shift Youtube Optimizer alexander.foster.mcculloch द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Chrome extension to hide/reduce the number of videos shown on YouTube."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Shift Youtube Optimizer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
As the summary above states, this is a simple open-source chrome extension written in vanilla JavaScript, CSS and of course, HTML, using the Chrome Extension format, although shortly there should be an extension for Firefox as well. I noticed a number of other Chrome Extensions that were similar but they all only worked on the homepage, so I decided to make one that worked all over the site, and didn't need the mouse to scroll before it would activate. I spent a few days looking into how YouTube sets up the front-end of their website, so if anyone has any questions, feel free to shoot me a message. Also, if anyone would like to check out the source-code, or contribute to make it ever better (or fix bugs), check out the github page for this chrome extension : https://github.com/robertfrosty/shift-yt-optimizer .
एक्सटेंशन की मूल जानकारी
नाम | Shift Youtube Optimizer |
ID | hfndjegliabemhpfcdecfehlipjdnecp |
आधिकारिक URL | https://chromewebstore.google.com/detail/shift-youtube-optimizer/hfndjegliabemhpfcdecfehlipjdnecp |
विवरण | Chrome extension to hide/reduce the number of videos shown on YouTube. |
फ़ाइल का आकार | 1.74 MB |
स्थापना संख्या | 23 |
वर्तमान संस्करण | 1.0.3 |
अंतिम अपडेट | 2021-10-23 |
प्रकाशन तिथि | 2021-09-24 |
रेटिंग | 4.75/5 कुल 4 रेटिंग्स |
डेवलपर | alexander.foster.mcculloch |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
सहायता पृष्ठ URL | https://github.com/robertfrosty/shift-yt-optimizer |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Shift Youtube Optimizer", "description": "Chrome extension to hide\/reduce the number of videos shown on YouTube.", "version": "1.0.3", "manifest_version": 3, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "observe.js" ] } ], "action": { "default_popup": ".\/ui\/options.html", "default_icon": { "16": ".\/ui\/icons\/icon.png", "32": ".\/ui\/icons\/icon2x.png", "48": ".\/ui\/icons\/icon3x.png", "128": ".\/ui\/icons\/icon128px.png" } }, "icons": { "16": ".\/ui\/icons\/icon.png", "32": ".\/ui\/icons\/icon2x.png", "48": ".\/ui\/icons\/icon3x.png", "128": ".\/ui\/icons\/icon128px.png" }, "permissions": [ "activeTab", "scripting", "storage" ] } |