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은(는) Aleksander Rurarz에 의해 개발된 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.…"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Insta Feed Eradicator 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}