Clickmate
A chrome extension to identify clickbait
Clickmate là gì?
Clickmate là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "A chrome extension to identify clickbait".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Clickmate
Tải xuống các tệp mở rộng Clickmate dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
This chrome extension uses Neural Net to predict and indicate clickbait articles on Facebook. Unlike other clickbait extensions, Clickmate is non intrusive. It blocks the visibility of the articles marked as clickbait while still allowing you to see it if you place the cursor on the article.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Clickmate |
ID | dpilcjcpbbhgfaiabpnkgcffmepipcpe |
URL Chính Thức | https://chromewebstore.google.com/detail/clickmate/dpilcjcpbbhgfaiabpnkgcffmepipcpe |
Mô tả | A chrome extension to identify clickbait |
Kích Thước Tệp | 14.02 KB |
Số Lần Cài Đặt | 48 |
Phiên Bản Hiện Tại | 0.0.0.2 |
Cập Nhật Lần Cuối | 2017-04-06 |
Ngày Phát Hành | 2017-04-06 |
Nhà Phát Triển | Unknown |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Clickmate", "version": "0.0.0.2", "author": "Yogesh Kumar, Preeti Bhandari", "description": "A chrome extension to identify clickbait", "background": { "scripts": [ "facebook.js" ] }, "browser_action": { "default_icon": "click_64.png", "default_title": "Clickmate" }, "icons": { "128": "click_128.png", "64": "click_64.png", "32": "click_32.png", "16": "click_16.png" }, "permissions": [ "http:\/\/www.facebook.com\/*", "https:\/\/www.facebook.com\/*", "https:\/\/clickmate.herokuapp.com\/*" ], "content_scripts": [ { "css": [ "styles.css" ], "js": [ "facebook.js" ], "matches": [ "http:\/\/www.facebook.com\/*", "https:\/\/www.facebook.com\/*" ] } ], "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'", "web_accessible_resources": [ "styles.css" ] } |