Video ads skipper
Save time while browsing the internet and get rid of tiresome ads!
Video ads skipper क्या है?
Video ads skipper admin द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Save time while browsing the internet and get rid of tiresome ads!"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Video ads skipper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
The add-on allows you to skip ads while browsing youtube. After the first 5 seconds the ad will be skipped and you can enjoy your favorite movie or music clip. Don't waste time on unnecessary ads, focus on the content, use the saved time for yourself!
एक्सटेंशन की मूल जानकारी
नाम | |
ID | gdoohnigblfkgnoidfndpghlohkanpfd |
आधिकारिक URL | https://chrome.google.com/webstore/detail/video-ads-skipper/gdoohnigblfkgnoidfndpghlohkanpfd |
विवरण | Save time while browsing the internet and get rid of tiresome ads! |
फ़ाइल का आकार | 55.48 KB |
स्थापना संख्या | 631 |
वर्तमान संस्करण | 2.2.2 |
अंतिम अपडेट | 2022-11-08 |
प्रकाशन तिथि | 2022-11-08 |
डेवलपर | admin |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Video ads skipper", "short_name": "Video ads skipper", "description": "Save time while browsing the internet and get rid of tiresome ads!", "manifest_version": 3, "version": "2.2.2", "background": { "service_worker": "source\/worker.js" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "source\/content.js" ], "run_at": "document_end", "all_frames": true }, { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "source\/content_yt.js" ], "run_at": "document_end", "all_frames": false } ], "permissions": [ "storage", "webRequest" ], "host_permissions": [ "*:\/\/*\/*" ], "web_accessible_resources": [ { "resources": [ "*" ], "matches": [ "*:\/\/*\/*" ] } ], "icons": { "128": "resource\/logo128.png" } } |