Text Sentiment Analysis

An extension to quickly analyze sentiment of selected text on any web page.

Text Sentiment Analysisคืออะไร?

Text Sentiment Analysis เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Subodh Garg และคุณลักษณะหลักของมันคือ "An extension to quickly analyze sentiment of selected text on any web page."

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

screenshot
screenshot

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

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

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

                        An extension to quickly analyze sentiment(negative, neutral or positive) of a selected text on any web page. To use just select any text on a web page and then click the extension icon in browser bar to analyze the sentiment in a simple UI. The extension uses Google's Natural Language API to analyze sentiment and thus works with all languages supported by Google for it's NL API.                    

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

ชื่อ Text Sentiment Analysis Text Sentiment Analysis
ID bhjikdhhfnicmnchfcnogdfifchjjgmn
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/text-sentiment-analysis/bhjikdhhfnicmnchfcnogdfifchjjgmn
คำอธิบาย An extension to quickly analyze sentiment of selected text on any web page.
ขนาดไฟล์ 67.05 KB
จำนวนการติดตั้ง 62
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2018-01-07
วันที่เผยแพร่ 2018-01-07
คะแนน 1.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Subodh Garg
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Text Sentiment Analysis",
    "description": "An extension to quickly analyze sentiment of selected text on any web page.",
    "version": "1.0",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/app\/content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/app\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": "assets\/icons\/curriculum_icon.png",
        "default_popup": "popup.html",
        "default_title": "Text Sentiment Analysis"
    }
}