Minimal Instagram

Focus on what matters most - on Instagram!

Vad är Minimal Instagram?

Minimal Instagram är en Chrome-tillägg utvecklad av Mason Hunter, och dess huvudfunktion är "Focus on what matters most - on Instagram!".

Tilläggsskärmbilder

screenshot

Ladda ner Minimal Instagram-förlängningens CRX-fil

Ladda ner Minimal Instagram-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Minimal Instagram Minimal Instagram
ID pmgomlgbolkccjickhcgcinklfdjjkcp
Officiell webbadress https://chromewebstore.google.com/detail/minimal-instagram/pmgomlgbolkccjickhcgcinklfdjjkcp
Beskrivning Focus on what matters most - on Instagram!
Filstorlek 13.49 KB
Antal Installationer 26
Aktuell Version 1.0.0
Senast Uppdaterad 2021-12-29
Publiceringsdatum 2021-12-29
Utvecklare Mason Hunter
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
            ]
        }
    ]
}