Minimal Instagram

Focus on what matters most - on Instagram!

Was ist Minimal Instagram?

Minimal Instagram ist eine Chrome-Erweiterung, die von Mason Hunter entwickelt wurde, und ihr Hauptmerkmal ist "Focus on what matters most - on Instagram!".

Erweiterungsscreenshots

screenshot

Minimal Instagram-Erweiterungs-CRX-Datei herunterladen

Laden Sie Minimal Instagram-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

                        Displays a blank screen when you try to access Instagram's explore page!

The page on Chrome will be completely blank and you will need to press the back arrow in order to return to the previous page and continue navigating the Instagram website.

Minimal Instagram is a great extension for those who want to avoid the distractions on the explore page but still keep up with those they follow. You will have access to the home page, your account page, and your messages.

This is a simple Chrome Extension that I built in a couple of days while learning JavaScript.                    

Grundlegende Informationen zur Erweiterung

Name Minimal Instagram Minimal Instagram
ID pmgomlgbolkccjickhcgcinklfdjjkcp
Offizielle URL https://chromewebstore.google.com/detail/minimal-instagram/pmgomlgbolkccjickhcgcinklfdjjkcp
Beschreibung Focus on what matters most - on Instagram!
Dateigröße 13.49 KB
Installationsanzahl 26
Aktuelle Version 1.0.0
Letztes Update 2021-12-29
Veröffentlichungsdatum 2021-12-29
Entwickler Mason Hunter
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Minimal Instagram",
    "description": "Focus on what matters most - on Instagram!",
    "version": "1.0.0",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.instagram.com\/"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}