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ファイルをダウンロード

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
Eメール [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"
    ]
}