Scroll Solace - Hide Social Media Feeds

Removes feeds and distracting content from popular social media like Twitter, Facebook, and LinkedIn.

Scroll Solace - Hide Social Media Feeds क्या है?

Scroll Solace - Hide Social Media Feeds scrollsolace द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Removes feeds and distracting content from popular social media like Twitter, Facebook, and LinkedIn."।

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

screenshot

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

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

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

                        Free yourself from addictive social media feeds that are built to get you trapped infinite scrolling on home page and explore feeds. 

Hide feeds from popular sites, but keep what you need from them: 
- notifications
- messages
- groups
- individual tweets
- etc.

Rather than blocking the entire site, Scroll Solace injects just the right amount of CSS while you're browsing to remove distracting content, and as soon as you navigate away, it removes it to make sure your regular browsing stays snappy and is uninterrupted.                    

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

नाम Scroll Solace - Hide Social Media Feeds Scroll Solace - Hide Social Media Feeds
ID pkkpjcbjoplobnnihelcjnigckibeaog
आधिकारिक URL https://chromewebstore.google.com/detail/scroll-solace-hide-social/pkkpjcbjoplobnnihelcjnigckibeaog
विवरण Removes feeds and distracting content from popular social media like Twitter, Facebook, and LinkedIn.
फ़ाइल का आकार 48.66 KB
स्थापना संख्या 48
वर्तमान संस्करण 1.0.1
अंतिम अपडेट 2020-11-15
प्रकाशन तिथि 2020-11-09
रेटिंग 4.57/5 कुल 7 रेटिंग्स
डेवलपर scrollsolace
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Scroll Solace - Hide Social Media Feeds",
    "short_name": "Scroll Solace",
    "description": "Removes feeds and distracting content from popular social media like Twitter, Facebook, and LinkedIn.",
    "version": "1.0.1",
    "manifest_version": 2,
    "permissions": [
        "storage",
        "tabs"
    ],
    "content_scripts": [
        {
            "js": [
                "solace.js"
            ],
            "matches": [
                "https:\/\/twitter.com\/*",
                "https:\/\/mobile.twitter.com\/*",
                "https:\/\/www.facebook.com\/*",
                "https:\/\/m.facebook.com\/*",
                "https:\/\/www.linkedin.com\/*",
                "https:\/\/www.instagram.com\/*"
            ]
        },
        {
            "css": [
                "twitter.css"
            ],
            "matches": [
                "https:\/\/twitter.com\/*",
                "https:\/\/mobile.twitter.com\/*"
            ]
        },
        {
            "css": [
                "linkedin.css"
            ],
            "matches": [
                "https:\/\/www.linkedin.com\/*"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "run_at": "document_end"
    },
    "browser_action": {
        "default_icon": {
            "16": "img\/[email protected]",
            "32": "img\/[email protected]"
        },
        "default_title": "Google Mail",
        "default_popup": "options.html"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+Shift+T",
                "mac": "MacCtrl+Shift+T"
            },
            "description": "Opens Solace"
        }
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "icons": {
        "16": "img\/[email protected]",
        "32": "img\/[email protected]",
        "48": "img\/[email protected]",
        "128": "img\/favicon.png"
    }
}