Mastodon Redirector
Redirect Mastodon URLs from other instances to your own instance.
什麼是Mastodon Redirector?
Mastodon Redirector是由Bramus Van Damme開發的Chrome擴展程式,該擴展的主要功能是“Redirect Mastodon URLs from other instances to your own instance.”。
擴展截圖
下載Mastodon Redirector擴展crx文件
下載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 |
官方網址 | 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 } } |