Chrome extension - ads changer
This extension make funny ads change on google and yandex search.
Chrome extension - ads changerคืออะไร?
Chrome extension - ads changer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Kim E-Commerce และคุณลักษณะหลักของมันคือ "This extension make funny ads change on google and yandex search."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Chrome extension - ads changer
ดาวน์โหลดไฟล์ส่วนขยาย Chrome extension - ads changer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
All search engines try to make paid advertising as similar as possible to natural search results. This extension fights with this approach. How? Very simple: it shows a beautiful piece of poop next to an advertisement. Or RED EXPLANATORY NAME. The choice of the option of marking the advertisement is provided to the user of the extension. Hope you like it.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | gioddbdekkbdggljddjiocfoncgimmgf |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/chrome-extension-ads-chan/gioddbdekkbdggljddjiocfoncgimmgf |
คำอธิบาย | This extension make funny ads change on google and yandex search. |
ขนาดไฟล์ | 17.64 KB |
จำนวนการติดตั้ง | 32 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2018-12-30 |
วันที่เผยแพร่ | 2018-12-30 |
คะแนน | 1.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | Kim E-Commerce |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "default_locale": "en", "name": "__MSG_extName__", "short_name": "__MSG_extShortName__", "description": "__MSG_extDescription__", "version": "1.0", "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "page_action": { "default_icon": "images\/icon128.png", "default_title": "__MSG_extShortName__" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/www.google.com\/*", "*:\/\/*.google.com\/*", "*:\/\/*.google.ru\/*", "*:\/\/google.ru\/*", "*:\/\/*.yandex.ru\/*", "*:\/\/yandex.ru\/*", "*:\/\/*.yandex.com\/*", "*:\/\/yandex.com\/*", "*:\/\/*.ya.ru\/*", "*:\/\/ya.ru\/*", "*:\/\/*.ya.com\/*", "*:\/\/ya.com\/*" ], "js": [ "main.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ "*.png", "*.jpg" ], "permissions": [ "tabs", "storage" ], "options_ui": { "page": "options.html", "open_in_tab": false } } |