ShortLink Decode
This extensions help decode the short link into the original link
什么是ShortLink Decode?
ShortLink Decode是由https://tienich.xyz开发的Chrome扩展程序,该扩展的主要功能是“This extensions help decode the short link into the original link”。
扩展截图
下载ShortLink Decode扩展crx文件
下载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"
]
}
]
} | |