Google Ads Hider
This extension hides ads when searching at Google
什麼是Google Ads Hider?
Google Ads Hider是由doratomer開發的Chrome擴展程式,該擴展的主要功能是“This extension hides ads when searching at Google”。
擴展截圖
下載Google Ads Hider擴展crx文件
下載Google Ads Hider擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
When you search something to purchase at google, we will hide/blur/mark the ads that you can search without paying more at random websites.
擴展基本資訊
名稱 | Google Ads Hider |
ID | hphgneaeckdmikgklodjnapgjdkjamcg |
官方網址 | https://chromewebstore.google.com/detail/google-ads-hider/hphgneaeckdmikgklodjnapgjdkjamcg |
簡介 | This extension hides ads when searching at Google |
檔案大小 | 23.87 KB |
安裝次數 | 28 |
目前版本 | 0.1.2 |
更新時間 | 2021-05-16 |
上架時間 | 2021-05-05 |
評分 | 5.00/5 共 1 次評分 |
開發者 | doratomer |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Google Ads Hider", "description": "This extension hides ads when searching at Google", "version": "0.1.2", "manifest_version": 2, "icons": { "128": ".\/ad_hider_128.png" }, "options_page": ".\/options.html", "options_ui": { "page": "options.html", "open_in_tab": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "include_globs": [ "http:\/\/*.google.*\/search*", "https:\/\/*.google.*\/search*" ], "js": [ "content_script.js" ], "css": [ "myStyle.css" ] } ], "browser_action": { "default_title": "Privacy Extension For WhatsApp Web", "default_popup": ".\/popup.html", "default_icon": { "32": ".\/ad_hider_128.png" } }, "permissions": [ "https:\/\/www.google.com\/*", "storage" ] } |