Mastodon4 Redirect
Redirects users from Mastodon4 supported instances to their home instance
Mastodon4 Redirectคืออะไร?
Mastodon4 Redirect เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Mikroni.fi และคุณลักษณะหลักของมันคือ "Redirects users from Mastodon4 supported instances to their home instance"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Mastodon4 Redirect
ดาวน์โหลดไฟล์ส่วนขยาย Mastodon4 Redirect ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Redirects you from other Mastodon instances to your own instances equilevant page, so you don't have to manually go to your instance and paste the URL in the search bar.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Mastodon4 Redirect |
ID | acbfckpoogjdigldffcbldijhgnjpfnc |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/mastodon4-redirect/acbfckpoogjdigldffcbldijhgnjpfnc |
คำอธิบาย | Redirects users from Mastodon4 supported instances to their home instance |
ขนาดไฟล์ | 18.97 KB |
จำนวนการติดตั้ง | 119 |
เวอร์ชันปัจจุบัน | 1.4 |
อัปเดตครั้งล่าสุด | 2022-11-25 |
วันที่เผยแพร่ | 2022-11-17 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | Mikroni.fi |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/raikasdev/mastodon4-redirect |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Mastodon4 Redirect", "version": "1.4", "description": "Redirects users from Mastodon4 supported instances to their home instance", "icons": { "16": "icon-16.png", "32": "icon-32.png", "48": "icon-48.png", "128": "icon-128.png" }, "author": "raikasdev", "action": { "default_popup": "src\/popup.html" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "m4redirect.js" ] } ], "options_ui": { "page": "src\/options.html" }, "background": { "service_worker": "src\/background.js" } } |