Content Farm Terminator
Marks content farm links, prevents accidental visiting, and blocks content farms' ads and mallicious scripts.
Content Farm Terminator क्या है?
Content Farm Terminator Danny Lin द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Marks content farm links, prevents accidental visiting, and blocks content farms' ads and mallicious scripts."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Content Farm Terminator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Content Farm Terminator has the following features: 1. Detects and marks hyperlinks targeting a content farm in any webpage, so that you can evade them easily. 2. Blocks any attempt to visit a content farm, so that you can evade them definitely. 3. A blocked page can be “View”ed within a sandbox with ads and scripts removed, so that you can investigate on them securely. 4. Customizable blacklists, whitelists, and graylists. Subscription of web blacklists is also supported. 5. A web page domain can be quickly blacklisted through the context menu on a page, a hyperlink, or a selected text.
एक्सटेंशन की मूल जानकारी
नाम | Content Farm Terminator |
ID | lcghoajegeldpfkfaejegfobkapnemjl |
आधिकारिक URL | https://chromewebstore.google.com/detail/content-farm-terminator/lcghoajegeldpfkfaejegfobkapnemjl |
विवरण | Marks content farm links, prevents accidental visiting, and blocks content farms' ads and mallicious scripts. |
फ़ाइल का आकार | 79.69 KB |
स्थापना संख्या | 47,830 |
वर्तमान संस्करण | 5.14.2 |
अंतिम अपडेट | 2024-02-08 |
प्रकाशन तिथि | 2020-02-11 |
रेटिंग | 4.68/5 कुल 60 रेटिंग्स |
डेवलपर | Danny Lin |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://danny0838.github.io/content-farm-terminator |
सहायता पृष्ठ URL | https://github.com/danny0838/content-farm-terminator |
गोपनीयता नीति पृष्ठ URL | https://danny0838.github.io/content-farm-terminator/privacy |
समर्थित भाषाएँ | en,zh-CN,zh-TW |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_appName__", "version": "5.14.2", "description": "__MSG_appDesc__", "author": "Danny Lin", "default_locale": "en", "minimum_chrome_version": "58", "homepage_url": "https:\/\/danny0838.github.io\/content-farm-terminator\/", "incognito": "split", "icons": { "48": "img\/content-farm-marker_48.png" }, "permissions": [ "contextMenus", "tabs", "unlimitedStorage", "webRequest", "webRequestBlocking", "storage", "http:\/\/*\/", "https:\/\/*\/" ], "optional_permissions": [ "history" ], "background": { "persistent": true, "scripts": [ "lib\/browser-polyfill.js", "lib\/Regex.js", "content-farm-filter.js", "utils.js", "background.js" ] }, "content_scripts": [ { "all_frames": true, "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/\/*" ], "js": [ "lib\/browser-polyfill.js", "utils.js", "content.js" ], "run_at": "document_start" } ], "options_ui": { "chrome_style": false, "open_in_tab": true, "page": "options.html" }, "web_accessible_resources": [ "blocked.html", "sandbox.html", "img\/*" ], "browser_action": { "default_icon": "img\/content-farm-marker_48.png", "default_title": "__MSG_appName__" } } |