Timeline Unsee
Unsubscribe from anything directly from timeline in one click! Supports: Facebook
Timeline Unsee란 무엇입니까?
Timeline Unsee은(는) Yuriy Dorogoy에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Unsubscribe from anything directly from timeline in one click! Supports: Facebook"입니다.
확장 프로그램 스크린샷
Timeline Unsee 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Chrome extension that allows us to unsubscribe directly from timeline (Currently Facebook only) PM. If you want to have this in other social media like twitter / reddit and so on, please share with me your thoughts. Facebook require us to use painful way when don't want to see something anymore, first we need to click on 3 dots, then wait for asynchronous call to Facebook server, then try to find text for unsubscribing. Sometimes it's even hidden inside a "more options" sections. That's a lot of work to do actually, which prevents us from filtering what we read and see. I believe that people should have control over the flow, we should be able to hide media directly from the timeline, that's why I made this extension. It's a lightweight JQuery + small script (90Kb in total) that triggers on scroll event. That's it. Extension is not tracking anything, it's opensource, you can check it here: https://github.com/dearcj/timeline-unsubscribe
확장 프로그램 기본 정보
이름 | Timeline Unsee |
ID | kndlpfnhahnkkfgdipfppkfhabehkhda |
공식 URL | https://chromewebstore.google.com/detail/timeline-unsee/kndlpfnhahnkkfgdipfppkfhabehkhda |
설명 | Unsubscribe from anything directly from timeline in one click! Supports: Facebook |
파일 크기 | 59.14 KB |
설치 횟수 | 18 |
현재 버전 | 0.11 |
최근 업데이트 | 2019-03-23 |
출시 날짜 | 2019-03-22 |
평점 | 5.00/5 총 5 개의 평점 |
개발자 | Yuriy Dorogoy |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/dearcj/timeline-unsubscribe |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Timeline Unsee", "description": "Unsubscribe from anything directly from timeline in one click! Supports: Facebook", "version": "0.11", "author": "Yuri Dorogoy", "content_scripts": [ { "matches": [ "*:\/\/www.facebook.com\/*" ], "css": [ "button.css" ], "js": [ "cash.min.js", "main.js" ], "run_at": "document_end" } ], "permissions": [ "*:\/\/www.facebook.com\/*", "activeTab" ], "web_accessible_resources": [ "hide3.png" ], "browser_action": { "default_icon": "tabico.png", "default_title": "Timeline unsee" } } |