Plurk Savior
Automatically mute and hide plurks on your timeline based on keywords.
Plurk Saviorคืออะไร?
Plurk Savior เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Shorn และคุณลักษณะหลักของมันคือ "Automatically mute and hide plurks on your timeline based on keywords."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Plurk Savior
ดาวน์โหลดไฟล์ส่วนขยาย 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" } } |