Medium Banner Remover
A simple addon to remove medium article banners that clutter the screen
Medium Banner Removerคืออะไร?
Medium Banner Remover เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "A simple addon to remove medium article banners that clutter the screen"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Medium Banner Remover
ดาวน์โหลดไฟล์ส่วนขยาย Medium Banner Remover ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
A simple browser addon to remove some annoying banners from medium articles code here: https://github.com/colinlcrawford/medium-banner-remover-browser-extn
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Medium Banner Remover |
ID | bophhfkkhlfjikhlpbjkiiknaepnkkcc |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/medium-banner-remover/bophhfkkhlfjikhlpbjkiiknaepnkkcc |
คำอธิบาย | A simple addon to remove medium article banners that clutter the screen |
ขนาดไฟล์ | 12.24 KB |
จำนวนการติดตั้ง | 44 |
เวอร์ชันปัจจุบัน | 0.0.5 |
อัปเดตครั้งล่าสุด | 2019-10-20 |
วันที่เผยแพร่ | 2019-10-19 |
คะแนน | 4.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | Unknown |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Medium Banner Remover", "version": "0.0.5", "description": "A simple addon to remove medium article banners that clutter the screen", "homepage_url": "https:\/\/github.com\/colinlcrawford\/medium-banner-remover-browser-extn", "author": "Colin Crawford", "icons": { "16": "icons\/icon-16.png", "32": "icons\/icon-32.png", "48": "icons\/icon-48.png", "128": "icons\/icon-128.png" }, "permissions": [ "activeTab", "storage", "*:\/\/*\/*" ], "browser_action": { "default_icon": "icons\/icon-128.png", "default_title": "Medium Banner Remover!" }, "options_ui": { "page": "options\/options.html", "browser_style": true, "chrome_style": true }, "background": { "scripts": [ "background\/background.js" ] }, "browser_specific_settings": { "gecko": { "id": "{a77fcc50-8ec5-4c21-9232-45eaa3be464c}" } }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content-scripts\/content-script.js" ] } ] } |