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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" } } |