YouWork
Prevent YouTube distractions.
YouWork क्या है?
YouWork https://tash-had.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Prevent YouTube distractions."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में YouWork एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
UPDATE: You can now click YouTube links directly and have the video show directly on YouWork (without having to search for the video). YouWork redirects YouTube links to a clean, distraction-free version of YouTube. No "recommended videos", no "related videos", no comment, no likes, no side ads, no distractions. This helps prevent binge-watching videos and going down rabbit holes. This way, when you need to watch a video during your work-period, you can do so without the risk of getting distracted through videos that would show up on your YouTube dashboard. Right-click YouWork anytime for the option to pause. Click the YouWork icon anytime, to use a popup version. YouWork redirects to https://tash-had.github.io/YouWork/ For any issues, contact me at through the form here: http://t-saqif.com/hello YouWork has absolutely no association with YouTube, and is simply a tool to enhance productivity.
एक्सटेंशन की मूल जानकारी
नाम | YouWork |
ID | imldehpbfplnfafinfamkneahoonapod |
आधिकारिक URL | https://chromewebstore.google.com/detail/youwork/imldehpbfplnfafinfamkneahoonapod |
विवरण | Prevent YouTube distractions. |
फ़ाइल का आकार | 29.04 KB |
स्थापना संख्या | 288 |
वर्तमान संस्करण | 1.3 |
अंतिम अपडेट | 2020-12-27 |
प्रकाशन तिथि | 2018-03-19 |
रेटिंग | 4.92/5 कुल 13 रेटिंग्स |
डेवलपर | https://tash-had.com |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | http://tash-had.com |
सहायता पृष्ठ URL | http://tash-had.com |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouWork", "description": "Prevent YouTube distractions.", "version": "1.3", "permissions": [ "activeTab", "contextMenus", "storage" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "exclude_matches": [ "https:\/\/www.youtube.com\/embed\/*" ], "js": [ "background.js" ], "run_at": "document_start", "all_frames": true } ], "browser_action": { "default_popup": "popup.html" }, "icons": { "16": "img\/icon_16.png", "32": "img\/icon_32.png", "48": "img\/icon_48.png", "128": "img\/icon_128.png" }, "manifest_version": 2 } |