ShortLink Decode
This extensions help decode the short link into the original link
Co to jest ShortLink Decode?
ShortLink Decode to rozszerzenie Chrome opracowane przez https://tienich.xyz, a jego główną funkcją jest „This extensions help decode the short link into the original link”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia ShortLink Decode
Pobierz pliki rozszerzeń ShortLink Decode 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
This extensions help decode the short link into the original link on web page Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | clcgakfkgdhbcmpkgmhmoapjdiffgfia |
| Oficjalny URL | https://chromewebstore.google.com/detail/shortlink-decode/clcgakfkgdhbcmpkgmhmoapjdiffgfia |
| Opis | This extensions help decode the short link into the original link |
| Rozmiar pliku | 18.34 KB |
| Liczba instalacji | 149 |
| Aktualna Wersja | 1.2 |
| Ostatnia Aktualizacja | 2019-05-15 |
| Data Publikacji | 2019-05-09 |
| Ocena | 4.00/5 Łącznie 4 Oceny |
| Deweloper | https://tienich.xyz |
| [email protected] | |
| Typ Płatności | free |
| Obsługiwane Języki | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "ShortLink Decode",
"description": "This extensions help decode the short link into the original link",
"version": "1.2",
"icons": {
"16": "icon.png",
"48": "icon.png"
},
"permissions": [
"tabs"
],
"browser_action": {
"default_icon": "icon.png"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"content.js"
]
}
]
} | |