ECHOed Links
Gets all your ECHO links and puts them into one, convenient location
Co to jest ECHOed Links?
ECHOed Links to rozszerzenie Chrome opracowane przez cboy343dev, a jego główną funkcją jest „Gets all your ECHO links and puts them into one, convenient location”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia ECHOed Links
Pobierz pliki rozszerzeń ECHOed Links w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | mllhpiblnkfpfbedglgpbdbfikpnopgh |
| Oficjalny URL | https://chromewebstore.google.com/detail/echoed-links/mllhpiblnkfpfbedglgpbdbfikpnopgh |
| Opis | Gets all your ECHO links and puts them into one, convenient location |
| Rozmiar pliku | 216 KB |
| Liczba instalacji | 78 |
| Aktualna Wersja | 3.0.0 |
| Ostatnia Aktualizacja | 2021-08-22 |
| Data Publikacji | 2021-06-03 |
| Ocena | 5.00/5 Łącznie 2 Oceny |
| Deweloper | cboy343dev |
| [email protected] | |
| Typ Płatności | free |
| Obsługiwane Języki | 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"
}
} | |