Mastodon Redirector
Redirect Mastodon URLs from other instances to your own instance.
Mastodon Redirectorคืออะไร?
Mastodon Redirector เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Bramus Van Damme และคุณลักษณะหลักของมันคือ "Redirect Mastodon URLs from other instances to your own instance."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Mastodon Redirector
ดาวน์โหลดไฟล์ส่วนขยาย Mastodon Redirector ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
One thing that’s a bit of a hassle with Mastodon is that you can’t immediately follow people on other instances: you have to copy the username and search for it on the instance that hosts your account. Same story with favoriting and boosting their posts, when viewed on their instance’s URL. To make this easier, this extension exists. Press the button, and you’ll be taken to the same account or status update you were viewing, but served on the Masto instance your account is on.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Mastodon Redirector |
ID | limifnkopacddgpihodacjeckfkpbfoe |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/mastodon-redirector/limifnkopacddgpihodacjeckfkpbfoe |
คำอธิบาย | Redirect Mastodon URLs from other instances to your own instance. |
ขนาดไฟล์ | 12.32 KB |
จำนวนการติดตั้ง | 762 |
เวอร์ชันปัจจุบัน | 0.4.0 |
อัปเดตครั้งล่าสุด | 2023-09-09 |
วันที่เผยแพร่ | 2022-11-23 |
คะแนน | 3.33/5 รวมทั้งหมด 6 คะแนน |
ผู้พัฒนา | Bramus Van Damme |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/bramus/mastodon-redirector |
URL หน้าช่วยเหลือ | https://github.com/bramus/mastodon-redirector/issues |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Mastodon Redirector", "action": [], "manifest_version": 3, "version": "0.4.0", "description": "Redirect Mastodon URLs from other instances to your own instance.", "permissions": [ "activeTab", "scripting", "storage" ], "icons": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "64": "images\/icon-64.png", "128": "images\/icon-128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ] } ], "background": { "service_worker": "background.js" }, "commands": { "_execute_action": { "suggested_key": { "windows": "Alt+Shift+M", "mac": "Alt+Shift+M", "chromeos": "Alt+Shift+M", "linux": "Alt+Shift+M" } } }, "options_ui": { "page": "options\/options.html", "browser_style": false, "open_in_tab": true } } |