Mastodon4 Redirect
Redirects users from Mastodon4 supported instances to their home instance
Apa itu Mastodon4 Redirect?
Mastodon4 Redirect adalah ekstensi Chrome yang dikembangkan oleh Mikroni.fi, dan fitur utamanya adalah "Redirects users from Mastodon4 supported instances to their home instance".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Mastodon4 Redirect
Unduh file ekstensi Mastodon4 Redirect dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Mastodon4 Redirect |
ID | acbfckpoogjdigldffcbldijhgnjpfnc |
URL Resmi | https://chromewebstore.google.com/detail/mastodon4-redirect/acbfckpoogjdigldffcbldijhgnjpfnc |
Deskripsi | Redirects users from Mastodon4 supported instances to their home instance |
Ukuran File | 18.97 KB |
Jumlah Instalasi | 119 |
Versi Saat Ini | 1.4 |
Terakhir Diperbarui | 2022-11-25 |
Tanggal Publikasi | 2022-11-17 |
Penilaian | 5.00/5 Total 1 Penilaian |
Pengembang | Mikroni.fi |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/raikasdev/mastodon4-redirect |
Bahasa yang Didukung | 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" } } |