Social Sentiments
Adds sentiments indicator to facebook posts.
ما هو Social Sentiments؟
Social Sentiments هو إضافة Chrome تم تطويرها بواسطة https://asadmemon.com، والميزة الرئيسية لها هي "Adds sentiments indicator to facebook posts.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Social Sentiments
قم بتنزيل ملفات الامتداد Social Sentiments بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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.
معلومات أساسية عن التمديد
الاسم | Social Sentiments |
ID | pljjkghcpbmleiggilgchhhomaihkdba |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/social-sentiments/pljjkghcpbmleiggilgchhhomaihkdba |
الوصف | Adds sentiments indicator to facebook posts. |
حجم الملف | 963 KB |
عدد التثبيتات | 45 |
النسخة الحالية | 0.1 |
آخر تحديث | 2016-10-24 |
تاريخ النشر | 2016-10-24 |
تقييم | 5.00/5 مجموع تقييمات 1 |
المطور | https://asadmemon.com |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | 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" } } |