Social Media Sort By Like

Sort instagram posts by like

Was ist Social Media Sort By Like?

Social Media Sort By Like ist eine Chrome-Erweiterung, die von chrome-developer-tw entwickelt wurde, und ihr Hauptmerkmal ist "Sort instagram posts by like".

Erweiterungsscreenshots

screenshot
screenshot

Social Media Sort By Like-Erweiterungs-CRX-Datei herunterladen

Laden Sie Social Media Sort By Like-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Social Media Sort By Like Social Media Sort By Like
ID fpbahdmgcdbhgmaphjflggfmnmjgoijn
Offizielle URL https://chromewebstore.google.com/detail/social-media-sort-by-like/fpbahdmgcdbhgmaphjflggfmnmjgoijn
Beschreibung Sort instagram posts by like
Dateigröße 1.02 MB
Installationsanzahl 129
Aktuelle Version 1.0.4
Letztes Update 2024-01-28
Veröffentlichungsdatum 2023-10-06
Entwickler chrome-developer-tw
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://abconvert.notion.site/IG-Sort-By-Like-Privacy-Policy-b328377164cf4544bb7d7c219e36bef4
Unterstützte Sprachen 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"
    }
}