Feed Filter

Feed Filter helps you to filter your facebook feed with posts based on the keywords you enter inside the extension. It can be used…

Was ist Feed Filter?

Feed Filter ist eine Chrome-Erweiterung, die von Maker entwickelt wurde, und ihr Hauptmerkmal ist "Feed Filter helps you to filter your facebook feed with posts based on the keywords you enter inside the extension. It can be used…".

Erweiterungsscreenshots

screenshot

Feed Filter-Erweiterungs-CRX-Datei herunterladen

Laden Sie Feed Filter-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

                        Feed Filter helps you to filter your facebook feed with posts based on the keywords you enter inside the extension. It can be used to delete the post with specific keywords you want or it can show you a post with the keywords you want to see.                    

Grundlegende Informationen zur Erweiterung

Name Feed Filter Feed Filter
ID ajhegeembcahfofkkhafolgpjgnimnib
Offizielle URL https://chromewebstore.google.com/detail/feed-filter/ajhegeembcahfofkkhafolgpjgnimnib
Beschreibung Feed Filter helps you to filter your facebook feed with posts based on the keywords you enter inside the extension. It can be used…
Dateigröße 469 KB
Installationsanzahl 81
Aktuelle Version 1.0.1
Letztes Update 2021-05-11
Veröffentlichungsdatum 2021-05-11
Entwickler Maker
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://automatics.one/privacy
Unterstützte Sprachen en
manifest.json
{
    "name": "Feed Filter",
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.0.1",
    "description": "",
    "manifest_version": 2,
    "incognito": "split",
    "icons": {
        "128": "icons\/128.png"
    },
    "browser_action": {
        "default_icon": "icons\/128.png",
        "default_popup": "popup\/popup.html"
    },
    "background": {
        "persistent": true,
        "page": "background\/background.html"
    },
    "permissions": [
        "storage",
        "cookies",
        "notifications",
        "*:\/\/*.facebook.com\/*"
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/*.facebook.com\/"
            ],
            "js": [
                "scripts\/content_script.js",
                "scripts\/jquery.js"
            ]
        }
    ]
}