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開發的Chrome擴展程式,該擴展的主要功能是“Marks content farm links, prevents accidental visiting, and blocks content farms' ads and mallicious scripts.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Content Farm Terminator擴展crx文件

下載Content Farm Terminator擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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 Content Farm Terminator
ID lcghoajegeldpfkfaejegfobkapnemjl
官方網址 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__"
    }
}