Social Media Sort By Like

Sort instagram posts by like

Social Media Sort By Like란 무엇입니까?

Social Media Sort By Like은(는) chrome-developer-tw에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Sort instagram posts by like"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Social Media Sort By Like 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Tired of scrolling endlessly to find the most popular posts on a profile? Say goodbye to manual searching and let Sort instagram posts by like do the hard work for you!

Discover the Benefits:

Uncover Top Performers: Easily find the most popular and engaging posts on any Instagram profile.

Gain Inspiration: Learn from successful posts to refine your own content and boost engagement.

Efficient Navigation: Save time by jumping to the most-liked posts and exploring profiles effortlessly.

Stay Informed: Stay ahead of trends and viral content to engage with your audience effectively.                    

확장 프로그램 기본 정보

이름 Social Media Sort By Like Social Media Sort By Like
ID fpbahdmgcdbhgmaphjflggfmnmjgoijn
공식 URL https://chromewebstore.google.com/detail/social-media-sort-by-like/fpbahdmgcdbhgmaphjflggfmnmjgoijn
설명 Sort instagram posts by like
파일 크기 1.02 MB
설치 횟수 129
현재 버전 1.0.4
최근 업데이트 2024-01-28
출시 날짜 2023-10-06
개발자 chrome-developer-tw
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://abconvert.notion.site/IG-Sort-By-Like-Privacy-Policy-b328377164cf4544bb7d7c219e36bef4
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Social Media Sort By Like",
    "short_name": "ig-sort-by-like",
    "version": "1.0.4",
    "description": "Sort instagram posts by like ",
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "permissions": [
        "activeTab",
        "webRequest",
        "background",
        "storage",
        "unlimitedStorage",
        "contextMenus",
        "*:\/\/*.instagram.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "inject.js"
            ]
        }
    ],
    "host_permissions": [
        ""
    ],
    "action": {
        "default_popup": "index.html"
    },
    "options_ui": {
        "page": "settings.html"
    }
}