Social Scroll for Twitter

Find anyone's old tweets with a couple of clicks!

Social Scroll for Twitter란 무엇입니까?

Social Scroll for Twitter은(는) https://hshaikh.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Find anyone's old tweets with a couple of clicks!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Social Scroll for Twitter 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        A simple chrome extension which takes away the trouble of scrolling on twitter to find someone's old tweets. 

Simply download the extension and with a couple of clicks find old tweets (from any month and year) on the user's profile! Never worry about using Twitter's advanced search ever again!

Social Scroll is the easiest way to find someone's first tweet! 

NOT AFFILIATED WITH TWITTER

******************************************************************************
V_0.2 Updates:

- Adding Extension Logo: The icons appeared to be black boxes in the extension bar on browsers, updating them to the actual extension logo!

******************************************************************************
V_0.3 Updates:

- There was a change in twitter HTML which was preventing the code from personalizing the navigation tray for each profile. Updated the code to align to changes in twitter HTML

- Removed functionality for social scrolling for Instagram which was sitting in the zip file, creating a separate extension for Instagram! Be on the lookout!                    

확장 프로그램 기본 정보

이름 Social Scroll for Twitter Social Scroll for Twitter
ID dooipgpmjgdkmafehmffclnncighoapa
공식 URL https://chromewebstore.google.com/detail/social-scroll-for-twitter/dooipgpmjgdkmafehmffclnncighoapa
설명 Find anyone's old tweets with a couple of clicks!
파일 크기 311 KB
설치 횟수 1,302
현재 버전 0.3
최근 업데이트 2022-04-07
출시 날짜 2021-10-26
평점 2.33/5 총 6 개의 평점
개발자 https://hshaikh.com
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Social Scroll for Twitter",
    "version": "0.3",
    "description": "Find anyone's old tweets with a couple of clicks!",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.js",
                "twitter.js"
            ]
        }
    ],
    "manifest_version": 3,
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "action": {
        "default_icon": "icons\/icon16.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "icons\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": []
}