Bot Sentinel
Automatically identify inauthentic accounts and toxic Twitter trolls.
Hvad er Bot Sentinel?
Bot Sentinel er en Chrome-udvidelse udviklet af https://botsentinel.com, og dens hovedfunktion er "Automatically identify inauthentic accounts and toxic Twitter trolls.".
Udvidelsesskærmbilleder
Download Bot Sentinel-udvidelses-CRX-fil
Download Bot Sentinel-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
Bot Sentinel is a free non-partisan platform developed to classify and track inauthentic accounts and toxic trolls. The platform uses machine learning and artificial intelligence to classify Twitter accounts, and then adds the accounts to a publicly available database that anyone can browse. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | eadmnplpcakhnmjbaioeholpakbknhgc |
| Officiel URL | https://chromewebstore.google.com/detail/bot-sentinel/eadmnplpcakhnmjbaioeholpakbknhgc |
| Beskrivelse | Automatically identify inauthentic accounts and toxic Twitter trolls. |
| Filstørrelse | 174 KB |
| Antal Installationer | 24,558 |
| Nuværende Version | 2.1.5 |
| Senest Opdateret | 2022-03-29 |
| Udgivelsesdato | 2020-07-04 |
| Bedømmelse | 3.63/5 Samlet 124 Bedømmelser |
| Udvikler | https://botsentinel.com |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | https://botsentinel.com |
| Hjælpeside-URL | https://help.botsentinel.com |
| URL til Fortrolighedspolitik Side | https://botsentinel.com/privacy-policy |
| Understøttede Sprog | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Bot Sentinel",
"short_name": "Bot Sentinel",
"description": "Automatically identify inauthentic accounts and toxic Twitter trolls.",
"version": "2.1.5",
"manifest_version": 2,
"icons": {
"128": "images\/icon.png"
},
"background": {
"scripts": [
"scripts\/background.js"
]
},
"content_scripts": [
{
"matches": [
"https:\/\/twitter.com\/*",
"https:\/\/www.twitter.com\/*",
"https:\/\/mobile.twitter.com\/*"
],
"js": [
"scripts\/twitter-content.js",
"libs\/canvas.js",
"libs\/jquery.js",
"libs\/mustache.js"
],
"run_at": "document_end",
"all_frames": false
},
{
"js": [
"scripts\/deck-content.js",
"libs\/canvas.js",
"libs\/jquery.js",
"libs\/mustache.js"
],
"matches": [
"https:\/\/tweetdeck.twitter.com\/*"
],
"run_at": "document_end",
"all_frames": true
},
{
"js": [
"scripts\/social.js",
"libs\/canvas.js",
"libs\/jquery.js",
"libs\/mustache.js"
],
"matches": [
"https:\/\/counter.social\/*"
],
"run_at": "document_end",
"all_frames": false
}
],
"browser_action": {
"default_icon": {
"38": "images\/icon.png"
},
"default_title": "Bot Sentinel",
"default_popup": "pages\/popup.html"
},
"web_accessible_resources": [
"images\/*",
"pages\/*",
"styles\/contentscript.css"
],
"permissions": [
"*:\/\/botsentinel.com\/*",
"*:\/\/*.botsentinel.com\/*",
"*:\/\/twitter.com\/*",
"*:\/\/*.twitter.com\/*",
"storage"
]
} | |