Insta Feed Eradicator

If you want to spend less time on social media but you don't want to delete your account altogether this is an extension for you.…

Insta Feed Eradicatorคืออะไร?

Insta Feed Eradicator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Aleksander Rurarz และคุณลักษณะหลักของมันคือ "If you want to spend less time on social media but you don't want to delete your account altogether this is an extension for you.…"

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Insta Feed Eradicator

ดาวน์โหลดไฟล์ส่วนขยาย Insta Feed Eradicator ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        If you want to spend less time on social media but you don't want to delete your account altogether this is an extension for you. Increase your productivity by switching of distracting elements of the Instagram website. You can hide the following:
 - posts feed
 - stories
 - suggestions for new persons to follow

The extension has a checkbox that lets you choose which elements of the site you want to hide.

======

Changelog:
v1.13:
- Fix extension not working with new Instagram layout.
v1.12:
- Update to newest version of Instagram web application.
v1.01:
- Hide explore icon on the top bar when "Hide suggestions" checkbox is check.
- Hide home icon on the top bar when "Hide feed" checkbox is check.

======

The code for the extension is open source and can be found under the link:
https://github.com/rurush47/insta-feed-eradicator                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Insta Feed Eradicator Insta Feed Eradicator
ID opmlbbpajagbjblnnhjhiedihdnlochl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/insta-feed-eradicator/opmlbbpajagbjblnnhjhiedihdnlochl
คำอธิบาย If you want to spend less time on social media but you don't want to delete your account altogether this is an extension for you.…
ขนาดไฟล์ 17.45 KB
จำนวนการติดตั้ง 4,467
เวอร์ชันปัจจุบัน 1.13
อัปเดตครั้งล่าสุด 2023-03-12
วันที่เผยแพร่ 2020-08-11
คะแนน 3.28/5 รวมทั้งหมด 36 คะแนน
ผู้พัฒนา Aleksander Rurarz
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Insta Feed Eradicator",
    "version": "1.13",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.instagram.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icons\/icon_16.png",
            "32": "icons\/icon_32.png",
            "64": "icons\/icon_64.png",
            "128": "icons\/icon_128.png"
        }
    },
    "permissions": [
        "storage"
    ]
}