Minimal Instagram

Focus on what matters most - on Instagram!

什麼是Minimal Instagram?

Minimal Instagram是由Mason Hunter開發的Chrome擴展程式,該擴展的主要功能是“Focus on what matters most - on Instagram!”。

擴展截圖

screenshot

下載Minimal Instagram擴展crx文件

下載Minimal Instagram擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Minimal Instagram Minimal Instagram
ID pmgomlgbolkccjickhcgcinklfdjjkcp
官方網址 https://chromewebstore.google.com/detail/minimal-instagram/pmgomlgbolkccjickhcgcinklfdjjkcp
簡介 Focus on what matters most - on Instagram!
檔案大小 13.49 KB
安裝次數 26
目前版本 1.0.0
更新時間 2021-12-29
上架時間 2021-12-29
開發者 Mason Hunter
電子郵箱 [email protected]
付費類型 free
支援的語言 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"
            ]
        }
    ]
}