Sort TikTok

Sort TikTok videos by most viewed, likes, comments, oldest, newest and Sort accounts by followers.

Sort TikTok란 무엇입니까?

Sort TikTok은(는) https://ovszon.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Sort TikTok videos by most viewed, likes, comments, oldest, newest and Sort accounts by followers."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Sort TikTok 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        TikTok videos sort by most viewed, most liked, commented, oldest, newest and Sort accounts by followers.

Very easy to use just install and chose your sort by option then do search or visit TikTok profile and extension will auto sort your videos.

NOTE: it is now beta test mode it may become paid extension near feature.                    

확장 프로그램 기본 정보

이름 Sort TikTok Sort TikTok
ID bmljpagafjlkebnopbdncpnifkknlobk
공식 URL https://chromewebstore.google.com/detail/sort-tiktok/bmljpagafjlkebnopbdncpnifkknlobk
설명 Sort TikTok videos by most viewed, likes, comments, oldest, newest and Sort accounts by followers.
파일 크기 89.98 KB
설치 횟수 10,000
현재 버전 1.0
최근 업데이트 2023-08-22
출시 날짜 2023-08-22
평점 4.45/5 총 11 개의 평점
개발자 https://ovszon.com
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://ovszon.com/privacy-policy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "default_locale": "en",
    "name": "__MSG_extName__",
    "short_name": "__MSG_extShortName__",
    "version": "1.0",
    "description": "__MSG_extShortDesc__",
    "icons": {
        "128": "icon.png"
    },
    "author": "Abhijit Kumar Biswas",
    "homepage_url": "https:\/\/www.ovszon.com",
    "action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.tiktok.com\/*"
            ],
            "js": [
                "script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "webRequest",
        "storage"
    ],
    "host_permissions": [
        "*:\/\/*.tiktok.com\/*"
    ]
}