ECHOed Links
Gets all your ECHO links and puts them into one, convenient location
Was ist ECHOed Links?
ECHOed Links ist eine Chrome-Erweiterung, die von cboy343dev entwickelt wurde, und ihr Hauptmerkmal ist "Gets all your ECHO links and puts them into one, convenient location".
Erweiterungsscreenshots
ECHOed Links-Erweiterungs-CRX-Datei herunterladen
Laden Sie ECHOed Links-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | mllhpiblnkfpfbedglgpbdbfikpnopgh |
| Offizielle URL | https://chromewebstore.google.com/detail/echoed-links/mllhpiblnkfpfbedglgpbdbfikpnopgh |
| Beschreibung | Gets all your ECHO links and puts them into one, convenient location |
| Dateigröße | 216 KB |
| Installationsanzahl | 78 |
| Aktuelle Version | 3.0.0 |
| Letztes Update | 2021-08-22 |
| Veröffentlichungsdatum | 2021-06-03 |
| Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
| Entwickler | cboy343dev |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | 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"
}
} | |