Perspective Guard: Mind Positivity Protection

Protect your mindset and worldviews against bad influences on social media, fake news, and manipulation.

Perspective Guard: Mind Positivity Protectionคืออะไร?

Perspective Guard: Mind Positivity Protection เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://perspectiveguard.com และคุณลักษณะหลักของมันคือ "Protect your mindset and worldviews against bad influences on social media, fake news, and manipulation."

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Perspective Guard: Mind Positivity Protection

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

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

                        PerspectiveGuard is the first AI extension that protects you against mindset and world-views manipulation on social media, by analyzing the posts, tweets, and subreddits you see, and monitoring the levels of positive, negative, and neutral content. 
The extension will notify you when there's a risk you're being targeted by a negative, political, divisive, or misinformation campaign.

Our mission is to keep users aware and less susceptible to the following influences:
• Inflammatory fake news
• Real news with negative bias
• Trolling bots
• Social engineering
• Cyber-bullying
• Hate speech 
• Government funded campaigns
• Orchestrated outrage

Features:
• 100% Privacy - our AI runs locally on your browser, so no data is sent or stored on our servers.
• Take back control over your positive state of mind while on social media.
• Track your content consumption metrics over time.
• Get notified when there's a high level of content with negative influence on your mindset and world views.
• Opt-in\out warning notifications.                    

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

ชื่อ Perspective Guard: Mind Positivity Protection Perspective Guard: Mind Positivity Protection
ID pjnngfieiplhhkodgdjmijiajmfgbihd
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/perspective-guard-mind-po/pjnngfieiplhhkodgdjmijiajmfgbihd
คำอธิบาย Protect your mindset and worldviews against bad influences on social media, fake news, and manipulation.
ขนาดไฟล์ 3.91 MB
จำนวนการติดตั้ง 218
เวอร์ชันปัจจุบัน 1.30
อัปเดตครั้งล่าสุด 2019-09-21
วันที่เผยแพร่ 2019-09-21
คะแนน 4.93/5 รวมทั้งหมด 14 คะแนน
ผู้พัฒนา http://perspectiveguard.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://perspectiveguard.com
URL หน้านโยบายความเป็นส่วนตัว https://perspectiveguard.com/privacy.html
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Perspective Guard: Mind Positivity Protection",
    "description": "Protect your mindset and worldviews against bad influences on social media, fake news, and manipulation.",
    "version": "1.30",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.facebook.com\/*"
            ],
            "js": [
                "parsers\/common.js",
                "parsers\/facebook.js",
                "background\/ssdeep.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/*.twitter.com\/*"
            ],
            "js": [
                "parsers\/common.js",
                "parsers\/twitter.js",
                "background\/ssdeep.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/*.reddit.com\/*"
            ],
            "js": [
                "parsers\/common.js",
                "parsers\/reddit.js",
                "background\/ssdeep.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background\/tensorflow\/tfjs.js",
            "background\/common.js",
            "background\/inference.js",
            "background\/background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_title": "PerspectiveGuard",
        "default_popup": "views\/popup.html"
    },
    "permissions": [
        "storage",
        "notifications"
    ],
    "icons": {
        "48": "views\/images\/icon_48.png",
        "128": "views\/images\/icon_ok.png",
        "256": "views\/images\/icon_256.png"
    }
}