Medium Unhooked

Hides the news feed on Medium.com

Medium Unhooked क्या है?

Medium Unhooked Pamela Fox द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Hides the news feed on Medium.com"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Medium Unhooked एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Medium.com has a front page news feed. It's great if you use Medium as a news discovery website, but not so great if you are prone to distraction (like most of us) and/or primarily use Medium.com as a writing tool. This extension hides the feed and instead presents you with quick links to write a new story or browse your drafts. You can still read stories that people share with you outside of the front page, you just won't be bombarded with story recommendations when you hit the front page anymore.                    

एक्सटेंशन की मूल जानकारी

नाम Medium Unhooked Medium Unhooked
ID chaldheffndbdmcoehdjhdllpnchffdo
आधिकारिक URL https://chrome.google.com/webstore/detail/medium-unhooked/chaldheffndbdmcoehdjhdllpnchffdo
विवरण Hides the news feed on Medium.com
फ़ाइल का आकार 6.15 KB
स्थापना संख्या 13
वर्तमान संस्करण 0.9
अंतिम अपडेट 2018-07-18
प्रकाशन तिथि 2018-07-18
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर Pamela Fox
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/pamelafox/medium-feed-hider
सहायता पृष्ठ URL https://github.com/pamelafox/medium-feed-hider/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Medium Unhooked",
    "version": "0.9",
    "description": "Hides the news feed on Medium.com",
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/medium.com\/*"
            ],
            "js": [
                "script.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ],
    "manifest_version": 2
}