Google Ads Hider
Hide Google search ads
什麼是Google Ads Hider?
Google Ads Hider是由Yui開發的Chrome擴展程式,該擴展的主要功能是“Hide Google search ads”。
擴展截圖
下載Google Ads Hider擴展crx文件
下載Google Ads Hider擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Google Ads Hider is a browser extension designed to enhance your Google search experience. With a simple click on the extension's icon, you can easily toggle between hiding and displaying ads on your Google search results. By default, upon installation, ads will be hidden.
擴展基本資訊
名稱 | Google Ads Hider |
ID | ngiebklmehgbkilagngnkeppmncackol |
官方網址 | https://chromewebstore.google.com/detail/google-ads-hider/ngiebklmehgbkilagngnkeppmncackol |
簡介 | Hide Google search ads |
檔案大小 | 7.09 MB |
安裝次數 | 63 |
目前版本 | 1.0 |
更新時間 | 2023-08-24 |
上架時間 | 2023-08-24 |
評分 | 5.00/5 共 1 次評分 |
開發者 | Yui |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Google Ads Hider", "version": "1.0", "description": "Hide Google search ads", "permissions": [ "storage", "activeTab" ], "background": { "service_worker": "dist\/background.js" }, "content_scripts": [ { "matches": [ "*:\/\/www.google.com\/*", "*:\/\/www.google.co.jp\/*", "*:\/\/www.google.co.uk\/*" ], "js": [ "dist\/content.js" ] } ], "action": { "default_icon": { "16": "active.png", "48": "active.png", "128": "active.png" } }, "icons": { "16": "active.png", "48": "active.png", "128": "active.png" } } |