Anonymizer & Sentiments Extension

It hides names and other personal data using NLP. Share your screen in your streaming without risks!

Anonymizer & Sentiments Extension란 무엇입니까?

Anonymizer & Sentiments Extension은(는) streamingsentiments에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "It hides names and other personal data using NLP. Share your screen in your streaming without risks!"입니다.

확장 프로그램 스크린샷

screenshot

Anonymizer & Sentiments Extension 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        (Chrome extension created during the Sentiment Expert.ai Hackathon).

Anonymizer web. It hides sensitive content on web pages and replaces it with asterisks (*****). It allows you to configure what type of entities to view: names of people, addresses, telephones, etc... It uses the API of expert.ai to detect these entities.

It calculates the sentiment score of the web and displays it in a "gauge" type graph.

It shows the emotions of the web in a radar chart (or spider), using the API of expert.ai.

Displays the main topic of the page, using the expert.ai API for main syncons.

This chrome extension allows you to change the API Token of expert.ai very easily.                    

확장 프로그램 기본 정보

이름 Anonymizer & Sentiments Extension Anonymizer & Sentiments Extension
ID lipefganjgdcbpmmlaipondjbklgiapd
공식 URL https://chromewebstore.google.com/detail/anonymizer-sentiments-ext/lipefganjgdcbpmmlaipondjbklgiapd
설명 It hides names and other personal data using NLP. Share your screen in your streaming without risks!
파일 크기 177 KB
설치 횟수 45
현재 버전 1.0
최근 업데이트 2021-07-14
출시 날짜 2021-07-13
평점 5.00/5 총 1 개의 평점
개발자 streamingsentiments
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Anonymizer & Sentiments Extension",
    "description": "It hides names and other personal data using NLP. Share your screen in your streaming without risks!",
    "version": "1.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "activeTab",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/nlapi.expert.ai\/*",
        "https:\/\/code.jquery.com\/*"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/streaming-sentiments-16.png",
            "32": "\/images\/streaming-sentiments-32.png",
            "48": "\/images\/streaming-sentiments-48.png",
            "128": "\/images\/streaming-sentiments-128.png"
        }
    },
    "icons": {
        "16": "\/images\/streaming-sentiments-16.png",
        "32": "\/images\/streaming-sentiments-32.png",
        "48": "\/images\/streaming-sentiments-48.png",
        "128": "\/images\/streaming-sentiments-128.png"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.5.1.min.js",
                "gauge.min.js",
                "chart.js",
                "globals.js"
            ]
        }
    ]
}