Plurk Savior

Automatically mute and hide plurks on your timeline based on keywords.

Plurk Savior क्या है?

Plurk Savior Shorn द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically mute and hide plurks on your timeline based on keywords."।

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

screenshot

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

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

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

                        Are you tired of seeing plurks on your dashboard about certain topics? Tired of constantly muting them? With Plurk Savior, you can input keywords, and any plurk - aside from your own - with said word in the top level will automatically be muted and hidden from your view. This can also work with emotes and icons, provided you enter the image's URL as a keyword.

This is based on the old Plurk Mute-and-Hide extension by Francis Chong.                    

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

नाम Plurk Savior Plurk Savior
ID kgohcolckgjlahpbhoocahejhpcbbdnj
आधिकारिक URL https://chromewebstore.google.com/detail/plurk-savior/kgohcolckgjlahpbhoocahejhpcbbdnj
विवरण Automatically mute and hide plurks on your timeline based on keywords.
फ़ाइल का आकार 273 KB
स्थापना संख्या 666
वर्तमान संस्करण 1.1.14
अंतिम अपडेट 2022-07-25
प्रकाशन तिथि 2020-01-23
रेटिंग 4.69/5 कुल 16 रेटिंग्स
डेवलपर Shorn
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Plurk Savior",
    "description": "Automatically mute and hide plurks on your timeline based on keywords.",
    "version": "1.1.14",
    "browser_action": {
        "default_icon": {
            "16": "images\/icon_16.png",
            "24": "images\/icon_24.png",
            "32": "images\/icon_32.png"
        },
        "default_title": "Plurk Savior",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.plurk.com\/*",
                "https:\/\/www.plurk.com\/*",
                "https:\/\/plurk.com\/*",
                "http:\/\/plurk.com\/*"
            ],
            "js": [
                "js\/content-script.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html",
        "chrome_style": false
    },
    "author": "Shorn",
    "icons": {
        "16": "images\/icon_16.png",
        "32": "images\/icon_32.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    }
}