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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "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 फ़ाइल डाउनलोड करें

crx प्रारूप में Insta Feed Eradicator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    ]
}