BlockCoin
BlockCoin is a browser extension designed to prevent cryptocurrency miners from operating within web browsers.
BlockCoinคืออะไร?
BlockCoin เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Felisha & Sharleen และคุณลักษณะหลักของมันคือ "BlockCoin is a browser extension designed to prevent cryptocurrency miners from operating within web browsers."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย BlockCoin
ดาวน์โหลดไฟล์ส่วนขยาย BlockCoin ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
BlockCoin is a browser extension designed to effectively prevent cryptocurrency miners from operating within web browsers. Its objective is to block these miners across all websites. The extension uses two methods to stop miners from working. First, it blocks requests that are loaded from a predefined blacklist, which is a common technique used by ad-blockers and mining blockers. The second method involves detecting possible mining activities within loaded scripts and quickly stopping them. The source code is available on Github : https://github.com/felishaww/blockCoin Developers: Felisha Miranda ([email protected]) Sharleen Emmanuela ([email protected]) Blacklist Credit: NoCoin
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | BlockCoin |
ID | cgpbhecmkcnlniappgfmpbjlhkjimlng |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/blockcoin/cgpbhecmkcnlniappgfmpbjlhkjimlng |
คำอธิบาย | BlockCoin is a browser extension designed to prevent cryptocurrency miners from operating within web browsers. |
ขนาดไฟล์ | 29.52 KB |
จำนวนการติดตั้ง | 65 |
เวอร์ชันปัจจุบัน | 1.0.1 |
อัปเดตครั้งล่าสุด | 2023-06-22 |
วันที่เผยแพร่ | 2023-06-21 |
คะแนน | 5.00/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | Felisha & Sharleen |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/felishaww/blockCoin |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "BlockCoin", "version": "1.0.1", "description": "BlockCoin is a browser extension designed to prevent cryptocurrency miners from operating within web browsers.", "manifest_version": 3, "author": "Felisha M. and Sharleen E.", "action": { "default_popup": "index.html", "default_title": "BlockCoin" }, "background": { "service_worker": "script\/background.js" }, "permissions": [ "tabs", "storage", "system.cpu", "webNavigation" ], "host_permissions": [ "*:\/\/*\/*" ], "icons": { "19": "icons\/19.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "options_page": "options.html" } |