Google Ads Hider
This extension hides ads when searching at Google
Google Ads Hider là gì?
Google Ads Hider là một tiện ích mở rộng Chrome được phát triển bởi doratomer, và tính năng chính của nó là "This extension hides ads when searching at Google".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Google Ads Hider
Tải xuống các tệp mở rộng Google Ads Hider dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Google Ads Hider |
ID | hphgneaeckdmikgklodjnapgjdkjamcg |
URL Chính Thức | https://chromewebstore.google.com/detail/google-ads-hider/hphgneaeckdmikgklodjnapgjdkjamcg |
Mô tả | This extension hides ads when searching at Google |
Kích Thước Tệp | 23.87 KB |
Số Lần Cài Đặt | 28 |
Phiên Bản Hiện Tại | 0.1.2 |
Cập Nhật Lần Cuối | 2021-05-16 |
Ngày Phát Hành | 2021-05-05 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | doratomer |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |