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文件

下载Social Media Sort By Like扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
    }
}