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은(는) jayleenli에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Steam Activity Filter lets you filter out unwanted screenshots and status updates from your Steam Friend Activity Feed."입니다.
확장 프로그램 스크린샷
Steam Activity Filter 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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
확장 프로그램 기본 정보
이름 | |
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" ] } ] } |