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 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
}
}
} | |