Sentiment Analyzer

Select any text on the web and get instant sentiment feedback from Google's Machine Learning API.

Sentiment Analyzerคืออะไร?

Sentiment Analyzer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "Select any text on the web and get instant sentiment feedback from Google's Machine Learning API."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Sentiment Analyzer

ดาวน์โหลดไฟล์ส่วนขยาย Sentiment Analyzer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Select any text on the web and get instant sentiment feedback from Google's Machine Learning API. Useful examples include evaluating information in feedback, email or articles.

Negative sentiment scale: 👿😡😭😩😖😢😓😔😨🙁 
Neutral: 😐 
Positive sentiment scale: 🙂😉😀😃😄😆😁🤗😂⭐

Please note that any selected information is sent to google for analysis, use at own discretion.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Sentiment Analyzer Sentiment Analyzer
ID iihfppcakmfggfnmnnafejonpdpibdpi
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/sentiment-analyzer/iihfppcakmfggfnmnnafejonpdpibdpi
คำอธิบาย Select any text on the web and get instant sentiment feedback from Google's Machine Learning API.
ขนาดไฟล์ 39.35 KB
จำนวนการติดตั้ง 94
เวอร์ชันปัจจุบัน 2.0
อัปเดตครั้งล่าสุด 2018-09-11
วันที่เผยแพร่ 2018-09-11
คะแนน 4.11/5 รวมทั้งหมด 9 คะแนน
ผู้พัฒนา Unknown
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Sentiment Analyzer",
    "description": "Select any text on the web and get instant sentiment feedback from Google's Machine Learning API.",
    "version": "2.0",
    "icons": {
        "16": "res\/NeutralFace16.png",
        "32": "res\/NeutralFace32.png",
        "48": "res\/NeutralFace48.png",
        "128": "res\/NeutralFace128.png"
    },
    "author": [
        {
            "name": "Jonathan Lundmark"
        },
        {
            "name": "Fifi Johansson"
        },
        {
            "name": "David Eriksson"
        },
        {
            "name": "Filip Byren"
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "src\/content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_icon": "res\/NeutralFace32-Disable.png",
        "default_title": "Sentiment Analyzer"
    },
    "background": {
        "scripts": [
            "src\/background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "activeTab",
        "http:\/\/www.google.com\/",
        "https:\/\/language.googleapis.com\/"
    ]
}