No Miner
This extension will analyze a page's javascript files and block coin mining.
No Miner क्या है?
No Miner JustBrandonT द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension will analyze a page's javascript files and block coin mining."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में No Miner एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Blocks Coin-Miners from Websites before and after they load. v1.0.1: Added Background content blocker which scans Javascript requests for CoinMiners and cancels the requests. The background blocker tells the content blocker to remove the script from the webpage. This blocks sites self-hosted miners and proxy-miners. v1.0.2: Added Settings page to allow users to add white-listed URL patterns.. For example: (.*?)google(.*?) would allow all urls that contain "google" to not be scanned. These rules use "regex"/"regular expression" patterns. Also added new patterns to block Base64 encoded Javascript miners which was a workaround to this plugin. Now this blocks everything again =] v1.0.3: Fixed bug in Firefox and Chrome which causes webRequest.onBeforeRequest to NOT cancel the download of bad files. To fix it, I made scanning synchronous instead of asynchronous (a bit slower, but not noticeable). Fixes issue: https://github.com/Brandon-T/Coin-Blocker/issues/1 v1.0.4: Fixed bug in the code which caused some white-listed sites to be scanned and blocked still. Added debugging code to print to the developer's console exactly what was blocked and what was allowed.
एक्सटेंशन की मूल जानकारी
नाम | No Miner |
ID | pbnhojipeihlneembpdpaniddioobbib |
आधिकारिक URL | https://chromewebstore.google.com/detail/no-miner/pbnhojipeihlneembpdpaniddioobbib |
विवरण | This extension will analyze a page's javascript files and block coin mining. |
फ़ाइल का आकार | 52.09 KB |
स्थापना संख्या | 1,674 |
वर्तमान संस्करण | 1.0.4 |
अंतिम अपडेट | 2017-12-28 |
प्रकाशन तिथि | 2017-12-28 |
रेटिंग | 3.55/5 कुल 11 रेटिंग्स |
डेवलपर | JustBrandonT |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/Brandon-T/Coin-Blocker |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "No Miner", "description": "This extension will analyze a page's javascript files and block coin mining.", "version": "1.0.4", "browser_action": { "default_icon": "icon.png" }, "options_page": "settings.html", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "jquery-3.2.1.min.js", "blocker2.js" ], "run_at": "document_start", "all_frames": true } ], "background": { "scripts": [ "jquery-3.2.1.min.js", "blocker.js" ] }, "permissions": [ "activeTab", "storage", "webRequest", "webRequestBlocking", " |