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 |
官方URL | 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" ] } |