Plurk Savior

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

Plurk Savior란 무엇입니까?

Plurk Savior은(는) Shorn에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically mute and hide plurks on your timeline based on keywords."입니다.

확장 프로그램 스크린샷

screenshot

Plurk Savior 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}