Save Pinned Tabs
Save your current pinned tabs.
什么是Save Pinned Tabs?
Save Pinned Tabs是由save-pinned开发的Chrome扩展程序,该扩展的主要功能是“Save your current pinned tabs.”。
扩展截图
下载Save Pinned Tabs扩展crx文件
下载Save Pinned Tabs扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension allows you to save your current pinned tabs as a set. You can then load the pinned tab set on any window that has the extension enabled. You can also set one of your tab sets to be auto-loaded on browser start. Extension syncing is supported. 扩展基本信息
| 名称 | |
| ID | anmidgajdonkgmmilbccfefkfieajakd |
| 官方URL | https://chromewebstore.google.com/detail/save-pinned-tabs/anmidgajdonkgmmilbccfefkfieajakd |
| 简介 | Save your current pinned tabs. |
| 文件大小 | 116 KB |
| 安装次数 | 26,480 |
| 当前版本 | 1.1.3 |
| 更新时间 | 2021-03-09 |
| 上架时间 | 2018-10-07 |
| 评分 | 4.48/5 共89次评分 |
| 开发者 | save-pinned |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/jmakila/SavePinned |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Save Pinned Tabs",
"short_name": "Save Pinned",
"version": "1.1.3",
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "57.0"
}
},
"description": "Save your current pinned tabs.",
"icons": {
"128": "images\/icon_128.png",
"64": "images\/icon_64.png",
"32": "images\/icon_32.png"
},
"permissions": [
"tabs",
"storage"
],
"browser_action": {
"default_icon": {
"128": "images\/icon_128.png",
"64": "images\/icon_64.png",
"32": "images\/icon_32.png"
},
"default_popup": "popup.html",
"default_title": "Save pinned tabs"
},
"background": {
"scripts": [
"lib\/browser-polyfill.js",
"functions.js",
"background.js"
],
"persistent": false
},
"options_ui": {
"page": "options.html",
"browser_style": true,
"chrome_style": true,
"open_in_tab": true
}
} | |