ECHOed Links

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

ECHOed Links란 무엇입니까?

ECHOed Links은(는) cboy343dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Gets all your ECHO links and puts them into one, convenient location"입니다.

확장 프로그램 스크린샷

screenshot

ECHOed Links 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}