Minimal Instagram

Focus on what matters most - on Instagram!

Minimal Instagramคืออะไร?

Minimal Instagram เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Mason Hunter และคุณลักษณะหลักของมันคือ "Focus on what matters most - on Instagram!"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Minimal Instagram

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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"
            ]
        }
    ]
}