Scroll Solace - Hide Social Media Feeds
Removes feeds and distracting content from popular social media like Twitter, Facebook, and LinkedIn.
Scroll Solace - Hide Social Media Feeds란 무엇입니까?
Scroll Solace - Hide Social Media Feeds은(는) scrollsolace에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Removes feeds and distracting content from popular social media like Twitter, Facebook, and LinkedIn."입니다.
확장 프로그램 스크린샷
Scroll Solace - Hide Social Media Feeds 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Free yourself from addictive social media feeds that are built to get you trapped infinite scrolling on home page and explore feeds. Hide feeds from popular sites, but keep what you need from them: - notifications - messages - groups - individual tweets - etc. Rather than blocking the entire site, Scroll Solace injects just the right amount of CSS while you're browsing to remove distracting content, and as soon as you navigate away, it removes it to make sure your regular browsing stays snappy and is uninterrupted.
확장 프로그램 기본 정보
이름 | Scroll Solace - Hide Social Media Feeds |
ID | pkkpjcbjoplobnnihelcjnigckibeaog |
공식 URL | https://chromewebstore.google.com/detail/scroll-solace-hide-social/pkkpjcbjoplobnnihelcjnigckibeaog |
설명 | Removes feeds and distracting content from popular social media like Twitter, Facebook, and LinkedIn. |
파일 크기 | 48.66 KB |
설치 횟수 | 48 |
현재 버전 | 1.0.1 |
최근 업데이트 | 2020-11-15 |
출시 날짜 | 2020-11-09 |
평점 | 4.57/5 총 7 개의 평점 |
개발자 | scrollsolace |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Scroll Solace - Hide Social Media Feeds", "short_name": "Scroll Solace", "description": "Removes feeds and distracting content from popular social media like Twitter, Facebook, and LinkedIn.", "version": "1.0.1", "manifest_version": 2, "permissions": [ "storage", "tabs" ], "content_scripts": [ { "js": [ "solace.js" ], "matches": [ "https:\/\/twitter.com\/*", "https:\/\/mobile.twitter.com\/*", "https:\/\/www.facebook.com\/*", "https:\/\/m.facebook.com\/*", "https:\/\/www.linkedin.com\/*", "https:\/\/www.instagram.com\/*" ] }, { "css": [ "twitter.css" ], "matches": [ "https:\/\/twitter.com\/*", "https:\/\/mobile.twitter.com\/*" ] }, { "css": [ "linkedin.css" ], "matches": [ "https:\/\/www.linkedin.com\/*" ] } ], "background": { "scripts": [ "background.js" ], "run_at": "document_end" }, "browser_action": { "default_icon": { "16": "img\/[email protected]", "32": "img\/[email protected]" }, "default_title": "Google Mail", "default_popup": "options.html" }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Alt+Shift+T", "mac": "MacCtrl+Shift+T" }, "description": "Opens Solace" } }, "options_ui": { "page": "options.html", "open_in_tab": true }, "icons": { "16": "img\/[email protected]", "32": "img\/[email protected]", "48": "img\/[email protected]", "128": "img\/favicon.png" } } |