Social Sentiments
Adds sentiments indicator to facebook posts.
Hvad er Social Sentiments?
Social Sentiments er en Chrome-udvidelse udviklet af https://asadmemon.com, og dens hovedfunktion er "Adds sentiments indicator to facebook posts.".
Udvidelsesskærmbilleder
Download Social Sentiments-udvidelses-CRX-fil
Download Social Sentiments-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Social Sentiments tells you how much of the Facebook posts you consume are positive and negative. It adds a small indicator for this. You also get detailed analytics about your positive/negative consumption online. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | pljjkghcpbmleiggilgchhhomaihkdba |
| Officiel URL | https://chromewebstore.google.com/detail/social-sentiments/pljjkghcpbmleiggilgchhhomaihkdba |
| Beskrivelse | Adds sentiments indicator to facebook posts. |
| Filstørrelse | 963 KB |
| Antal Installationer | 45 |
| Nuværende Version | 0.1 |
| Senest Opdateret | 2016-10-24 |
| Udgivelsesdato | 2016-10-24 |
| Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
| Udvikler | https://asadmemon.com |
| [email protected] | |
| Betalingsmetode | free |
| Understøttede Sprog | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Social Sentiments",
"description": "Adds sentiments indicator to facebook posts.",
"version": "0.1",
"manifest_version": 2,
"content_security_policy": "script-src 'self' https:\/\/cdn.heapanalytics.com; object-src 'self'",
"icons": {
"48": "assets\/hat48.png",
"128": "assets\/hat128.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.facebook.com\/*"
],
"run_at": "document_start",
"js": [
"lib\/jquery-1.9.0.min.js",
"content\/facebook_script.js"
],
"css": [
"content\/style.css"
]
}
],
"background": {
"scripts": [
"lib\/sentiment_afinn.js",
"lib\/sentiment.js",
"background\/count_by_day.js",
"background\/background_report.js",
"background\/background.js"
]
},
"permissions": [
"storage"
],
"browser_action": {
"name": "View my analytics"
}
} | |