Remove All Spam From Roblox Places

A Roblox Spam Filter for places page

Was ist Remove All Spam From Roblox Places?

Remove All Spam From Roblox Places ist eine Chrome-Erweiterung, die von PedroGabriel entwickelt wurde, und ihr Hauptmerkmal ist "A Roblox Spam Filter for places page".

Erweiterungsscreenshots

screenshot

Remove All Spam From Roblox Places-Erweiterungs-CRX-Datei herunterladen

Laden Sie Remove All Spam From Roblox Places-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Roblox don't take any action to stop spam from showing on it's "place" commentaries. This extension gonna *try* to remove it, but there are so much spam that not even this can remove sometimes.

FEATURES:

Roblox auto load first batch of comments when you scroll down, it gonna keep auto loading until reach 10 comments that are not spam (Or when it load 2k comments it gonna stop, so it don't lag the page)

When you press Load More it gonna prevent new spam in this next batch.


Places like Murder Mystery is almost impossible to see comments that are not spam.
Roblox, implement reCaptcha please.                    

Grundlegende Informationen zur Erweiterung

Name Remove All Spam From Roblox Places Remove All Spam From Roblox Places
ID bcdakfjcljblhldkfjfaaamfodjhbhao
Offizielle URL https://chrome.google.com/webstore/detail/remove-all-spam-from-robl/bcdakfjcljblhldkfjfaaamfodjhbhao
Beschreibung A Roblox Spam Filter for places page
Dateigröße 672 KB
Installationsanzahl 3,000
Aktuelle Version 1.1.5
Letztes Update 2016-09-27
Veröffentlichungsdatum 2016-09-27
Bewertung 4.39/5 Insgesamt 18 Bewertungen
Entwickler PedroGabriel
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Remove All Spam From Roblox Places",
    "description": "A Roblox Spam Filter for places page",
    "version": "1.1.5",
    "manifest_version": 2,
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "css": [
                "styles.css"
            ],
            "matches": [
                "*:\/\/*.roblox.com\/games\/*"
            ],
            "run_at": "document_start",
            "js": [
                "jquery.min.js",
                "arrive.min.js",
                "spam_filter.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon48.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "storage"
    ]
}