Video ads skipper
Save time while browsing the internet and get rid of tiresome ads!
什麼是Video ads skipper?
Video ads skipper是由admin開發的Chrome擴展程式,該擴展的主要功能是“Save time while browsing the internet and get rid of tiresome ads!”。
擴展截圖
下載Video ads skipper擴展crx文件
下載Video ads skipper擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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" } } |