AdSkipper
This extension will skip youtube ads.
AdSkipper क्या है?
AdSkipper Abhishek Meharia द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension will skip youtube ads."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में AdSkipper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
AdSkipper for Youtube™ is a content filtering and ad blocking browser extension which blocks ads on Youtube™. Automatically clicks 'Skip Ad' buttons for you. It doesn't block ads, it just clicks close button and skip ad for you automatically. Useful if you are listening to music in office areas or if you are bit lazy to press that button.
एक्सटेंशन की मूल जानकारी
नाम | AdSkipper |
ID | paeoelngbckenlidinleldbemhkdiphi |
आधिकारिक URL | https://chromewebstore.google.com/detail/adskipper/paeoelngbckenlidinleldbemhkdiphi |
विवरण | This extension will skip youtube ads. |
फ़ाइल का आकार | 59.06 KB |
स्थापना संख्या | 2,555 |
वर्तमान संस्करण | 0.7 |
अंतिम अपडेट | 2021-06-27 |
प्रकाशन तिथि | 2019-08-14 |
रेटिंग | 4.50/5 कुल 8 रेटिंग्स |
डेवलपर | Abhishek Meharia |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://abhim.in |
सहायता पृष्ठ URL | https://abhim.in |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "AdSkipper", "description": "This extension will skip youtube ads.", "version": "0.7", "icons": { "128": "icon.png" }, "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "background": { "page": "background.html", "persistent": true }, "commands": { "toggle-feature-foo": { "suggested_key": { "default": "Ctrl+Shift+K", "mac": "MacCtrl+Shift+K" }, "description": "Switches between play and pause state.", "name": "Play pause shortcut command", "global": true } }, "permissions": [ "tabs", "storage" ], "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "jquery.js", "skip.js" ] } ], "content_security_policy": "script-src 'self' https:\/\/www.gstatic.com\/ https:\/\/*.firebaseio.com https:\/\/www.googleapis.com; object-src 'self'" } |