Twean
Can hide images, videos, promoted or liked tweets from Twitter timeline. But also «Who To Follow», «Trends», «Video Live» modules.
Twean란 무엇입니까?
Twean은(는) http://www.tekool.net에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Can hide images, videos, promoted or liked tweets from Twitter timeline. But also «Who To Follow», «Trends», «Video Live» modules."입니다.
확장 프로그램 스크린샷
Twean 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Optionnaly hide from the timeline: - images from tweets (you can still click on the tweet to open it). - videos from tweets (you can still click on the tweet to play it). - promoted (promoted tweets pushed by Twitter can be hidden). - liked tweets (tweets liked by the users you follow can be hidden). Optionnaly hide from the main dashboard: - «Who To Follow» module. - «Trends» module. - «Video Live» module.
확장 프로그램 기본 정보
이름 | |
ID | mgdbopghpkjmgnhjfdnfeihnjgndjnbp |
공식 URL | https://chrome.google.com/webstore/detail/twean/mgdbopghpkjmgnhjfdnfeihnjgndjnbp |
설명 | Can hide images, videos, promoted or liked tweets from Twitter timeline. But also «Who To Follow», «Trends», «Video Live» modules. |
파일 크기 | 19.66 KB |
설치 횟수 | 690 |
현재 버전 | 1.10.0 |
최근 업데이트 | 2017-09-03 |
출시 날짜 | 2017-09-03 |
평점 | 4.05/5 총 40 개의 평점 |
개발자 | http://www.tekool.net |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/tekool/twean |
도움말 페이지 URL | http://www.tekool.net/ |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Twean", "short_name": "Twean", "version": "1.10.0", "description": "Can hide images, videos, promoted or liked tweets from Twitter timeline. But also \u00abWho To Follow\u00bb, \u00abTrends\u00bb, \u00abVideo Live\u00bb modules.", "author": "Tekool - www.tekool.net", "homepage_url": "https:\/\/chrome.google.com\/webstore\/detail\/twean\/mgdbopghpkjmgnhjfdnfeihnjgndjnbp", "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*" ], "exclude_matches": [ "https:\/\/twitter.com\/settings\/*" ], "js": [ "page.js" ], "run_at": "document_start", "all_frames": true } ], "icons": { "19": "icon\/icon19.png", "38": "icon\/icon38.png", "48": "icon\/icon48.png", "128": "icon\/icon128.png" }, "page_action": { "default_title": "Twean", "default_icon": { "19": "icon\/icon19.png", "38": "icon\/icon38.png", "48": "icon\/icon48.png", "128": "icon\/icon128.png" }, "default_popup": "options.html" }, "background": { "scripts": [ "background.js" ] }, "options_page": "options.html" } |