ECHOed Links

Gets all your ECHO links and puts them into one, convenient location

ما هو ECHOed Links؟

ECHOed Links هو إضافة Chrome تم تطويرها بواسطة cboy343dev، والميزة الرئيسية لها هي "Gets all your ECHO links and puts them into one, convenient location".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة ECHOed Links

قم بتنزيل ملفات الامتداد ECHOed Links بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        FOR UC STUDENTS ONLY:
This extension puts all the ECHO links onto the LEARN.
It also makes all the links available in the extension.

Changelog:
You can now hide links.
Various fixes and optimisations.                    

معلومات أساسية عن التمديد

الاسم ECHOed Links ECHOed Links
ID mllhpiblnkfpfbedglgpbdbfikpnopgh
عنوان URL الرسمي https://chromewebstore.google.com/detail/echoed-links/mllhpiblnkfpfbedglgpbdbfikpnopgh
الوصف Gets all your ECHO links and puts them into one, convenient location
حجم الملف 216 KB
عدد التثبيتات 78
النسخة الحالية 3.0.0
آخر تحديث 2021-08-22
تاريخ النشر 2021-06-03
تقييم 5.00/5 مجموع تقييمات 2
المطور cboy343dev
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ECHOed Links",
    "description": "Gets all your ECHO links and puts them into one, convenient location",
    "version": "3.0.0",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.learn.canterbury.ac.nz\/my\/*"
            ],
            "js": [
                "main.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "tabs",
        "*:\/\/*.learn.canterbury.ac.nz\/my\/*"
    ],
    "browser_action": {
        "default_icon": "\/img\/logo_128.png",
        "default_popup": "popup.html",
        "default_title": "ECHOedLinks"
    },
    "icons": {
        "16": "\/img\/logo_16.png",
        "32": "\/img\/logo_32.png",
        "48": "\/img\/logo_48.png",
        "128": "\/img\/logo_128.png",
        "512": "\/img\/logo_512.png",
        "1024": "\/img\/logo_1024.png"
    }
}