Auto-switch to Latest Tweets for Twitter
This tiny extension will switch you back to Latest Tweets automatically every time you load Twitter homepage
Auto-switch to Latest Tweets for Twitter란 무엇입니까?
Auto-switch to Latest Tweets for Twitter은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This tiny extension will switch you back to Latest Tweets automatically every time you load Twitter homepage"입니다.
확장 프로그램 스크린샷
Auto-switch to Latest Tweets for Twitter 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
New Twitter for Web showing you algorithmic feed regularly. If you prefer to see your tweets in chronological order, you have to switch back manually every time. This tiny extension will switch you back to Latest Tweets automatically every time you load the Twitter homepage. Important note: script only works when the page is (re)loaded, but Twitter is navigating between its pages without reloading. So imagine a situation: you left your notifications tab hanging for a while and then come back and hit the home button. Now Twitter will show you the home page without reloading page itself. In this case, the extension would not know that it have to do its job, even if Twitter decided to show you algorithmic feed again. But here is the good news — you don't have to reach this tiny buttons again, just reload the page with cmd/ctrl + R and enjoy your latest tweets.
확장 프로그램 기본 정보
이름 | Auto-switch to Latest Tweets for Twitter |
ID | dnjgjckjnbdecolmjdooahpcmihdmked |
공식 URL | https://chromewebstore.google.com/detail/auto-switch-to-latest-twe/dnjgjckjnbdecolmjdooahpcmihdmked |
설명 | This tiny extension will switch you back to Latest Tweets automatically every time you load Twitter homepage |
파일 크기 | 10.4 KB |
설치 횟수 | 1,098 |
현재 버전 | 1.0.1 |
최근 업데이트 | 2019-07-28 |
출시 날짜 | 2019-07-27 |
평점 | 4.75/5 총 4 개의 평점 |
개발자 | Unknown |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Auto-switch to Latest Tweets for Twitter", "description": "This tiny extension will switch you back to Latest Tweets automatically every time you load Twitter homepage", "version": "1.0.1", "icons": { "128": "icon_128.png" }, "browser_action": { "default_icon": "icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/home", "https:\/\/mobile.twitter.com\/home" ], "run_at": "document_idle", "js": [ "content.js" ] } ] } |