LinkDownloader
Grouping all website pages links to one place!
什么是LinkDownloader?
LinkDownloader是由sharonbaum.mrkt开发的Chrome扩展程序,该扩展的主要功能是“Grouping all website pages links to one place!”。
扩展截图
下载LinkDownloader扩展crx文件
下载LinkDownloader扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension Grouping all user's website pages links to one place. 扩展基本信息
| 名称 | |
| ID | bfllnidboadchhjlofjkanmgdmefljfk |
| 官方URL | https://chrome.google.com/webstore/detail/linkdownloader/bfllnidboadchhjlofjkanmgdmefljfk |
| 简介 | Grouping all website pages links to one place! |
| 文件大小 | 13.83 KB |
| 安装次数 | 4,220 |
| 当前版本 | 1 |
| 更新时间 | 2022-12-07 |
| 上架时间 | 2022-12-07 |
| 评分 | 1.00/5 共1次评分 |
| 开发者 | sharonbaum.mrkt |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://home.aethemselveb.info/ |
| 帮助页面URL | https://home.aethemselveb.info/contact.html |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"action": {
"default_icon": "logo.png",
"default_title": "LinkDownloader",
"default_popup": "popup.html"
},
"description": "Grouping all website pages links to one place!",
"icons": {
"128": "logo.png"
},
"manifest_version": 3,
"name": "LinkDownloader",
"version": "1",
"background": {
"service_worker": "background.js"
},
"permissions": [
"storage"
],
"web_accessible_resources": [
{
"resources": [
"icons\/*.svg"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
]
}
],
"content_scripts": [
{
"matches": [
"https:\/\/*\/*",
"http:\/\/*\/*"
],
"js": [
"content.js"
]
}
],
"host_permissions": [
"*:\/\/*\/*"
]
} | |