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."입니다.
확장 프로그램 스크린샷
Content Farm Terminator 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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__" } } |