Did Youtube unsubscribe me?
Check if youtube unsubscribes you without asking.
Did Youtube unsubscribe me? क्या है?
Did Youtube unsubscribe me? T21 Computing द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Check if youtube unsubscribes you without asking."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Did Youtube unsubscribe me? एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
You get notified if you get unsubscribed from a YouTube channel so your favorite creators content stays on your home page. This extension will open a new YouTube tab in the background every few hours to check you subscription list. You must be Signed In. --------------------------------------- Currently In beta, so please report any issues on the support form on the chrome web store.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | lbodbdbdjefgplcajojgampojiiamjhe |
आधिकारिक URL | https://chrome.google.com/webstore/detail/did-youtube-unsubscribe-m/lbodbdbdjefgplcajojgampojiiamjhe |
विवरण | Check if youtube unsubscribes you without asking. |
फ़ाइल का आकार | 16.88 KB |
स्थापना संख्या | 30 |
वर्तमान संस्करण | 0.1.3 |
अंतिम अपडेट | 2020-11-14 |
प्रकाशन तिथि | 2020-11-14 |
डेवलपर | T21 Computing |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
गोपनीयता नीति पृष्ठ URL | https://f1.t21computing.co.uk/privacy |
समर्थित भाषाएँ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Did Youtube unsubscribe me?", "description": "Check if youtube unsubscribes you without asking.", "version": "0.1.3", "permissions": [ "storage", "tabs" ], "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/?DYUM=1" ], "js": [ "js\/content.js" ], "css": [ "css\/main.css" ] } ], "icons": { "64": "images\/Unsub64.png", "128": "images\/Unsub128.png", "256": "images\/Unsub256.png" }, "web_accessible_resources": [ "manage\/*" ], "browser_action": { "default_popup": "popup.html", "default_icon": { "64": "images\/Unsub64.png", "128": "images\/Unsub128.png", "256": "images\/Unsub256.png" } } } |