Newgrounds M/A Filter

Make Newgrounds more SFW by filtering out more thumbnails for mature content, as well as add warnings to certain pages.

Τι είναι το Newgrounds M/A Filter;

Το Newgrounds M/A Filter είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://www.brianorchosky.com, και η κύρια λειτουργία του είναι "Make Newgrounds more SFW by filtering out more thumbnails for mature content, as well as add warnings to certain pages.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Newgrounds M/A Filter

Λήψη αρχείων επέκτασης Newgrounds M/A Filter σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        (This extension seems to have been broken completely with Newgrounds' new design. There are currently no plans to update it.)

This extension attempts to make Newgrounds (www.newgrounds.com) more SFW by filtering out more stuff related to mature content, and makes other small changes so that you know where you're going within Newgrounds. It does NOT block any content itself or remove it from view, only thumbnails of mature and adult content are affected. This is so you don't encounter these types of thumbnails if you don't want to.

The extension is customizable. You can choose to filter only a-rated items instead, you can choose to only block specific pages on Newgrounds.

Naturally, if there are any user suggestions I'm all ears. Leave a review here or a comment on the relevant page on my website, or PM me (bcdefg123) on Newgrounds.

I do not own Newgrounds, I am just a user. The extension is subject to break at any time if the site changes. Also be aware that the content on NG is self-rated, meaning things might still get through that this extension would otherwise address.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Newgrounds M/A Filter Newgrounds M/A Filter
ID phchlhgfejopgcopjdndleaohemaddim
Επίσημο URL https://chromewebstore.google.com/detail/newgrounds-ma-filter/phchlhgfejopgcopjdndleaohemaddim
Περιγραφή Make Newgrounds more SFW by filtering out more thumbnails for mature content, as well as add warnings to certain pages.
Μέγεθος Αρχείου 297 KB
Αριθμός Εγκαταστάσεων 143
Τρέχουσα Έκδοση 1.1.6
Τελευταία Ενημέρωση 2017-01-03
Ημερομηνία Δημοσίευσης 2017-01-02
Αξιολόγηση 3.00/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής https://www.brianorchosky.com
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://www.brianorchosky.com/chrome/ngfilter.html
Διεύθυνση URL της Σελίδας Βοήθειας http://www.brianorchosky.com/chrome/ngfilter.html
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Newgrounds M\/A Filter",
    "short_name": "NG Filter",
    "description": "Make Newgrounds more SFW by filtering out more thumbnails for mature content, as well as add warnings to certain pages.",
    "version": "1.1.6",
    "web_accessible_resources": [
        "MIcon.png",
        "AIcon.png",
        "MIconArt.png",
        "AIconArt.png",
        "MIconSmall.png",
        "AIconSmall.png",
        "MIconMini.png",
        "AIconMini.png"
    ],
    "icons": {
        "16": "favicon.png",
        "48": "iconMed.png",
        "128": "bigIcon.png"
    },
    "permissions": [
        "tabs",
        "http:\/\/*.newgrounds.com\/",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.newgrounds.com\/*"
            ],
            "js": [
                "jquery.min.js",
                "myscript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_icon": {
            "19": "icon.png",
            "38": "iconBig.fw.png"
        },
        "default_title": "NG Filter",
        "default_popup": "options.html"
    }
}