Steam Activity Filter

Steam Activity Filter lets you filter out unwanted screenshots and status updates from your Steam Friend Activity Feed.

Τι είναι το Steam Activity Filter;

Το Steam Activity Filter είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον jayleenli, και η κύρια λειτουργία του είναι "Steam Activity Filter lets you filter out unwanted screenshots and status updates from your Steam Friend Activity Feed.".

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

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Steam Activity Filter

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

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

                        Steam Activity Filter(SAF) hides unwanted posts on your Steam Activity Feed. (e.g. https://steamcommunity.com/my/home)

SAF automatically places a filtering interface on at the top your Steam Friend Activity Home page. SAF retrieves your current Steam Friends list (https://steamcommunity.com/my/friends) and places the usernames in the interface.

This Chrome Extension can hide the following types of posts:
-Screenshots
-New Games
-Status Posts
-Favorites on Steam Community items

How to use Steam Activity Filter:
1. Uncheck the usernames of whom you do not want to see in your feed. Checked users will appear in your feed. 
2. Click the filter button, and your Steam Activity Feed will change instantly. 

Changelog:
https://github.com/jayleenli/Steam-Activity-Filter

Author:
Jayleen Li                    

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

Όνομα Steam Activity Filter Steam Activity Filter
ID dnhaemngbanccjamofoeokgpadfegjcf
Επίσημο URL https://chrome.google.com/webstore/detail/steam-activity-filter/dnhaemngbanccjamofoeokgpadfegjcf
Περιγραφή Steam Activity Filter lets you filter out unwanted screenshots and status updates from your Steam Friend Activity Feed.
Μέγεθος Αρχείου 40.39 KB
Αριθμός Εγκαταστάσεων 71
Τρέχουσα Έκδοση 1.1
Τελευταία Ενημέρωση 2017-04-03
Ημερομηνία Δημοσίευσης 2017-04-03
Αξιολόγηση 3.00/5 Συνολικά 6 Αξιολογήσεις
Προγραμματιστής jayleenli
Τύπος Πληρωμής free
URL της Σελίδας Πολιτικής Απορρήτου https://docs.google.com/document/d/1Qs86rceXys_oTsdKI79pKmd7tKlf6bVusTb4PYokVIo/edit?usp=sharing
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Steam Activity Filter",
    "description": "Steam Activity Filter lets you filter out unwanted screenshots and status updates from your Steam Friend Activity Feed.",
    "version": "1.1",
    "icons": {
        "16": "saflogo.png",
        "48": "saflogo.png",
        "128": "saflogo.png"
    },
    "browser_action": {
        "default_icon": "saflogo.png"
    },
    "permissions": [
        "http:\/\/steamcommunity.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/steamcommunity.com\/id\/*",
                "http:\/\/steamcommunity.com\/profiles\/*"
            ],
            "exclude_matches": [
                "*:\/\/store.steampowered.com\/dynamicstore\/*",
                "*:\/\/store.steampowered.com\/checkout\/*",
                "*:\/\/store.steampowered.com\/widget\/*",
                "*:\/\/store.steampowered.com\/login\/*",
                "*:\/\/store.steampowered.com\/join\/*",
                "*:\/\/store.steampowered.com\/api\/*",
                "*:\/\/steamcommunity.com\/login\/*"
            ],
            "js": [
                "jQuery.min.js",
                "steamfilter.js"
            ]
        }
    ]
}