Minimal Instagram

Focus on what matters most - on Instagram!

O que é Minimal Instagram?

Minimal Instagram é uma extensão do Chrome desenvolvida por Mason Hunter, e sua principal característica é "Focus on what matters most - on Instagram!".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Minimal Instagram

Baixe arquivos de extensão Minimal Instagram no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Minimal Instagram Minimal Instagram
ID pmgomlgbolkccjickhcgcinklfdjjkcp
URL Oficial https://chromewebstore.google.com/detail/minimal-instagram/pmgomlgbolkccjickhcgcinklfdjjkcp
Descrição Focus on what matters most - on Instagram!
Tamanho do Arquivo 13.49 KB
Contagem de Instalações 26
Versão Atual 1.0.0
Última Atualização 2021-12-29
Data de Publicação 2021-12-29
Desenvolvedor Mason Hunter
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
            ]
        }
    ]
}