MineBlock
This extension will find and remove js miners
什麼是MineBlock?
MineBlock是由shimongb開發的Chrome擴展程式,該擴展的主要功能是“This extension will find and remove js miners”。
擴展截圖
下載MineBlock擴展crx文件
下載MineBlock擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
The AdBlock for miners! 擴展基本資訊
| 名稱 | |
| ID | dmcpbelgocmkmgbbpndggbilfljilkgk |
| 官方網址 | https://chromewebstore.google.com/detail/mineblock/dmcpbelgocmkmgbbpndggbilfljilkgk |
| 簡介 | This extension will find and remove js miners |
| 檔案大小 | 4.92 KB |
| 安裝次數 | 652 |
| 目前版本 | 2.1 |
| 更新時間 | 2017-09-30 |
| 上架時間 | 2017-09-30 |
| 評分 | 3.67/5 共 3 次評分 |
| 開發者 | shimongb |
| 付費類型 | free |
| 擴展官網 | http://www.sqlsolutions.co.il |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "MineBlock",
"description": "This extension will find and remove js miners",
"version": "2.1",
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"inject.js"
],
"all_frames": true
}
],
"web_accessible_resources": [
"popup.js",
"inject.js"
],
"permissions": [
"activeTab"
]
} | |