Senti-Trend
This extension gathers data from URL and displays keywords with sentiment analysis.
什麼是Senti-Trend?
Senti-Trend是由maryhipp開發的Chrome擴展程式,該擴展的主要功能是“This extension gathers data from URL and displays keywords with sentiment analysis.”。
擴展截圖
下載Senti-Trend擴展crx文件
下載Senti-Trend擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | |
ID | mpiibijblggpgpoddialioodnlbgongg |
官方網址 | https://chrome.google.com/webstore/detail/senti-trend/mpiibijblggpgpoddialioodnlbgongg |
簡介 | This extension gathers data from URL and displays keywords with sentiment analysis. |
檔案大小 | 466 KB |
安裝次數 | 136 |
目前版本 | 3.0 |
更新時間 | 2014-07-15 |
上架時間 | 2014-07-15 |
評分 | 5.00/5 共 4 次評分 |
開發者 | maryhipp |
付費類型 | free |
支援的語言 | 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'" } |