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은(는) http://perspectiveguard.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Protect your mindset and worldviews against bad influences on social media, fake news, and manipulation."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Perspective Guard: Mind Positivity Protection 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}