ShortLink Decode
This extensions help decode the short link into the original link
Что такое ShortLink Decode?
ShortLink Decode - это расширение Chrome, разработанное https://tienich.xyz, и его основная функция - "This extensions help decode the short link into the original link".
Снимки экрана расширения
Скачать файл CRX расширения ShortLink Decode
Скачайте файлы расширений ShortLink Decode в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extensions help decode the short link into the original link on web page Основная информация о расширении
| Название | |
| ID | clcgakfkgdhbcmpkgmhmoapjdiffgfia |
| Официальный URL | https://chromewebstore.google.com/detail/shortlink-decode/clcgakfkgdhbcmpkgmhmoapjdiffgfia |
| Описание | This extensions help decode the short link into the original link |
| Размер файла | 18.34 KB |
| Количество установок | 149 |
| Текущая Версия | 1.2 |
| Последнее Обновление | 2019-05-15 |
| Дата публикации | 2019-05-09 |
| Рейтинг | 4.00/5 Всего 4 оценок |
| Разработчик | https://tienich.xyz |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Поддерживаемые языки | 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"
]
}
]
} | |