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.”。
扩展截图
下载Plurk Savior扩展crx文件
下载Plurk Savior扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 |
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" } } |