SeenIt
SeenIt labels or hides the YouTube videos you've already watched. Now you can discover new content more easily.
SeenIt क्या है?
SeenIt Imran Thobani द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "SeenIt labels or hides the YouTube videos you've already watched. Now you can discover new content more easily."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में SeenIt एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Labels (or hides, if you adjust the options) the thumbnails of videos you've watched. Works for: * Search results * Recommendations * Sidebar with similar videos to the video now playing If you like this extension, please rate and/or leave a review here! All feedback is useful.
एक्सटेंशन की मूल जानकारी
नाम | SeenIt |
ID | micbdilkepmleglkjkcgeppifphhpnfl |
आधिकारिक URL | https://chromewebstore.google.com/detail/seenit/micbdilkepmleglkjkcgeppifphhpnfl |
विवरण | SeenIt labels or hides the YouTube videos you've already watched. Now you can discover new content more easily. |
फ़ाइल का आकार | 28.08 KB |
स्थापना संख्या | 190 |
वर्तमान संस्करण | 1.3 |
अंतिम अपडेट | 2013-11-17 |
प्रकाशन तिथि | 2013-11-17 |
रेटिंग | 2.71/5 कुल 7 रेटिंग्स |
डेवलपर | Imran Thobani |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "SeenIt", "description": "SeenIt labels or hides the YouTube videos you've already watched. Now you can discover new content more easily.", "version": "1.3", "author": "Imran Thobani", "icons": { "128": "seenit.png" }, "content_security_policy": "script-src 'self' https:\/\/apis.google.com; object-src 'self'", "browser_action": { "default_icon": "seenit.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "main.js" ], "run_at": "document_end", "all_frames": true } ], "oauth2": { "client_id": "1058256324296-ve67pga7n4anuc1d4c4s8uhlq1glkqhm.apps.googleusercontent.com", "scopes": [ "https:\/\/www.googleapis.com\/auth\/youtube.readonly" ] }, "permissions": [ "identity" ], "background": { "page": "background.html" } } |