Add to Shaarli
This extension lets you add the current tab or a note to your Shaarli instance.
什么是Add to Shaarli?
Add to Shaarli是由Lucas Bürgy开发的Chrome扩展程序,该扩展的主要功能是“This extension lets you add the current tab or a note to your Shaarli instance.”。
扩展截图
下载Add to Shaarli扩展crx文件
下载Add to Shaarli扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
You have to setup your Shaarli instance in the options first. - On click : Add current tab - Alt+S : Add current tab - Alt+N : Add a note This extension is open source and available here: https://github.com/burgyl/AddToShaarli
扩展基本信息
名称 | Add to Shaarli |
ID | jhfblapoehcfajokolimghdfmeeakbee |
官方URL | https://chromewebstore.google.com/detail/add-to-shaarli/jhfblapoehcfajokolimghdfmeeakbee |
简介 | This extension lets you add the current tab or a note to your Shaarli instance. |
文件大小 | 99.53 KB |
安装次数 | 1,473 |
当前版本 | 1.1.0 |
更新时间 | 2021-03-20 |
上架时间 | 2019-03-24 |
评分 | 5.00/5 共4次评分 |
开发者 | Lucas Bürgy |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/burgyl/AddToShaarli |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Add to Shaarli", "description": "This extension lets you add the current tab or a note to your Shaarli instance.", "version": "1.1.0", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_icon": "icon.png" }, "options_page": "options.html", "options_ui": { "page": "options.html", "open_in_tab": false }, "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "activeTab", "storage" ], "commands": { "add-url": { "suggested_key": { "default": "Alt+S" }, "description": "Add current tab" }, "add-note": { "suggested_key": { "default": "Alt+N" }, "description": "Add a note" } } } |