Senti-Trend
This extension gathers data from URL and displays keywords with sentiment analysis.
Senti-Trend là gì?
Senti-Trend là một tiện ích mở rộng Chrome được phát triển bởi maryhipp, và tính năng chính của nó là "This extension gathers data from URL and displays keywords with sentiment analysis.".
Ả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 Senti-Trend
Tải xuống các tệp mở rộng Senti-Trend 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
Ever wish you could get an at-a-glance summary of an article's attitudes? Senti-Trend provides an alongside sentiment analysis graph of the content on your currently open tab. This extension was designed with articles and blog posts in mind, but will generate a pop-up for any page containing up to 15 "entities" as defined by the Alchemy API for Entity Sentiment Analysis. For best results, please wait for the webpage to fully load it's contents. Also please note that this extension involves a lengthy API call; you may need to click our icon more than once until data is received.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | mpiibijblggpgpoddialioodnlbgongg |
URL Chính Thức | https://chrome.google.com/webstore/detail/senti-trend/mpiibijblggpgpoddialioodnlbgongg |
Mô tả | This extension gathers data from URL and displays keywords with sentiment analysis. |
Kích Thước Tệp | 466 KB |
Số Lần Cài Đặt | 136 |
Phiên Bản Hiện Tại | 3.0 |
Cập Nhật Lần Cuối | 2014-07-15 |
Ngày Phát Hành | 2014-07-15 |
Đánh Giá | 5.00/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | maryhipp |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Senti-Trend", "short_name": "See a website's sentiments at-a-glance.", "description": "This extension gathers data from URL and displays keywords with sentiment analysis.", "version": "3.0", "browser_action": { "default_icon": "icons\/small_icon.png", "default_title": "Senti-Trend" }, "icons": { "128": "icons\/small_icon.png", "48": "icons\/large_icon.png" }, "background": { "scripts": [ "vendors\/jquery.min.js", "background.js" ], "persistent": true }, "permissions": [ "tabs", "http:\/\/*\/", "https:\/\/*\/", "storage" ], "content_security_policy": "script-src 'self' https:\/\/access.alchemyapi.com\/calls\/url\/URLGetRankedNamedEntities; object-src 'self'" } |