Clickbait Blocker
Automatically block sites known for being click-baity, and allow custom settings to add or remove sites from those lists.
Clickbait Blocker란 무엇입니까?
Clickbait Blocker은(는) [email protected]에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically block sites known for being click-baity, and allow custom settings to add or remove sites from those lists."입니다.
Clickbait Blocker 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Let's face it, there is a lot of clickbait out there. There are many site's whose entire existence is to create inflamed article titles so that you click on them. Sometimes, it is easy to know that there are to be ignored, sometimes it is more difficult. Clickbait Blocker is a free and opensource Chrome extension that is built to allow you to be warned when hitting a known Clickbait site. This can be ignored, or added to an allowed list of sites you trust. More features on the way. The list of sites is free and available on GitHub— additions or removals are welcome on the GitHub repository: https://github.com/clickbait/clickbait-blocker-sites The full source code can be seen also on GitHub: https://github.com/clickbait/clickbait-blocker
확장 프로그램 기본 정보
이름 | |
ID | bdaceojfpjpfnilmonmgohmpjokabjec |
공식 URL | https://chrome.google.com/webstore/detail/clickbait-blocker/bdaceojfpjpfnilmonmgohmpjokabjec |
설명 | Automatically block sites known for being click-baity, and allow custom settings to add or remove sites from those lists. |
파일 크기 | 27.49 KB |
설치 횟수 | 114 |
현재 버전 | 0.0.3 |
최근 업데이트 | 2016-11-17 |
출시 날짜 | 2016-11-17 |
평점 | 1.00/5 총 1 개의 평점 |
개발자 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/clickbait/clickbait-blocker |
도움말 페이지 URL | https://github.com/clickbait/clickbait-blocker/issues |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Clickbait Blocker", "description": "Automatically block sites known for being click-baity, and allow custom settings to add or remove sites from those lists.", "version": "0.0.3", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content_scripts.bundle.js" ] } ], "content_security_policy": "script-src 'self'; object-src 'self'", "permissions": [ "storage" ], "icons": { "16": "img\/logo_16.png", "48": "img\/logo_48.png", "128": "img\/logo_128.png" }, "options_ui": { "page": "pages\/options.html", "chrome_style": true, "open_in_tab": true } } |