Timeline Unsee

Unsubscribe from anything directly from timeline in one click! Supports: Facebook

Timeline Unsee क्या है?

Timeline Unsee Yuriy Dorogoy द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Unsubscribe from anything directly from timeline in one click! Supports: Facebook"।

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

screenshot

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

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

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

                        Chrome extension that allows us to unsubscribe directly from timeline (Currently Facebook only) PM. If you want to have this in other social media like twitter / reddit and so on, please share with me your thoughts.

Facebook require us to use painful way when don't want to see something anymore, first we need to click on 3 dots, then wait for asynchronous call to Facebook server, then try to find text for unsubscribing. Sometimes it's even hidden inside a "more options" sections. That's a lot of work to do actually, which prevents us from filtering what we read and see. I believe that people should have control over the flow, we should be able to hide media directly from the timeline, that's why I made this extension.

It's a lightweight JQuery + small script (90Kb in total) that triggers on scroll event. That's it. Extension is not tracking anything, it's opensource, you can check it here:
https://github.com/dearcj/timeline-unsubscribe                    

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

नाम Timeline Unsee Timeline Unsee
ID kndlpfnhahnkkfgdipfppkfhabehkhda
आधिकारिक URL https://chromewebstore.google.com/detail/timeline-unsee/kndlpfnhahnkkfgdipfppkfhabehkhda
विवरण Unsubscribe from anything directly from timeline in one click! Supports: Facebook
फ़ाइल का आकार 59.14 KB
स्थापना संख्या 18
वर्तमान संस्करण 0.11
अंतिम अपडेट 2019-03-23
प्रकाशन तिथि 2019-03-22
रेटिंग 5.00/5 कुल 5 रेटिंग्स
डेवलपर Yuriy Dorogoy
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/dearcj/timeline-unsubscribe
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Timeline Unsee",
    "description": "Unsubscribe from anything directly from timeline in one click! Supports: Facebook",
    "version": "0.11",
    "author": "Yuri Dorogoy",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.facebook.com\/*"
            ],
            "css": [
                "button.css"
            ],
            "js": [
                "cash.min.js",
                "main.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "*:\/\/www.facebook.com\/*",
        "activeTab"
    ],
    "web_accessible_resources": [
        "hide3.png"
    ],
    "browser_action": {
        "default_icon": "tabico.png",
        "default_title": "Timeline unsee"
    }
}