Sentiment Analyzer
Select any text on the web and get instant sentiment feedback from Google's Machine Learning API.
Sentiment Analyzer क्या है?
Sentiment Analyzer Unknown द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Select any text on the web and get instant sentiment feedback from Google's Machine Learning API."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Sentiment Analyzer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
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\/" ] } |