Google Ads Hider
This extension hides ads when searching at Google
Google Ads Hiderคืออะไร?
Google Ads Hider เป็นส่วนขยายของ Chrome ที่พัฒนาโดย doratomer และคุณลักษณะหลักของมันคือ "This extension hides ads when searching at Google"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Google Ads Hider
ดาวน์โหลดไฟล์ส่วนขยาย 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" ] } |