Social Muter
An extension for easily removing or hiding tweets in your timeline with a certain hashtag or keywords.
Social Muter란 무엇입니까?
Social Muter은(는) https://socialmuter.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension for easily removing or hiding tweets in your timeline with a certain hashtag or keywords."입니다.
확장 프로그램 스크린샷
Social Muter 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Tired of weekly spoilers showing up on your Twitter Timeline? Or perhaps, you're tired of seeing a certain hashtag or topic being discussed. With Social Muter, you can filter out all of that noise from your timeline and show only content that you really want to see, when you want to see it.
확장 프로그램 기본 정보
이름 | Social Muter |
ID | pipnnaljhbijgcfmcihmmjmpnmhhljhp |
공식 URL | https://chromewebstore.google.com/detail/social-muter/pipnnaljhbijgcfmcihmmjmpnmhhljhp |
설명 | An extension for easily removing or hiding tweets in your timeline with a certain hashtag or keywords. |
파일 크기 | 107 KB |
설치 횟수 | 24 |
현재 버전 | 0.0.1 |
최근 업데이트 | 2016-12-18 |
출시 날짜 | 2016-12-17 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | https://socialmuter.com |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_extName__", "version": "0.0.1", "description": "__MSG_extDescription__", "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "default_locale": "en", "background": { "scripts": [ "background.js" ] }, "permissions": [ "tabs", "storage", "*:\/\/twitter.com\/*" ], "browser_action": { "default_icon": { "19": "icon-19.png", "38": "icon-38.png" }, "default_title": "__MSG_extName__", "default_popup": "popup.html" }, "omnibox": { "keyword": "Twitter Muter" }, "content_scripts": [ { "matches": [ "http:\/\/twitter.com\/*", "https:\/\/twitter.com\/*" ], "js": [ "content.js" ], "run_at": "document_end", "all_frames": false } ] } |