Link Saver
Save and manage links
什么是Link Saver?
Link Saver是由louis.lim.ying.wei开发的Chrome扩展程序,该扩展的主要功能是“Save and manage links”。
扩展截图
下载Link Saver扩展crx文件
下载Link Saver扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Simple app which saves links by opening on the context menu (right-clicking on links) and clicking on the extension option. This app stores all links which is visible in the extension popup, and you can export them into a file. Once done with the links, you have an option to delete all saved links. 扩展基本信息
| 名称 | |
| ID | oidgppajkkafcmihodcoajbjfkjbkeon |
| 官方URL | https://chrome.google.com/webstore/detail/link-saver/oidgppajkkafcmihodcoajbjfkjbkeon |
| 简介 | Save and manage links |
| 文件大小 | 209 KB |
| 安装次数 | 49 |
| 当前版本 | 1.1 |
| 更新时间 | 2019-02-23 |
| 上架时间 | 2019-02-23 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | louis.lim.ying.wei |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Link Saver",
"version": "1.1",
"description": "Save and manage links",
"manifest_version": 2,
"background": {
"scripts": [
"js\/background.js"
],
"persistent": false
},
"permissions": [
"storage",
"contextMenus",
"downloads"
],
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images\/link-saver-16.png",
"32": "images\/link-saver-32.png",
"48": "images\/link-saver-48.png",
"128": "images\/link-saver-128.png"
}
},
"icons": {
"16": "images\/link-saver-16.png",
"32": "images\/link-saver-32.png",
"48": "images\/link-saver-48.png",
"128": "images\/link-saver-128.png"
}
} | |