Web Notes
Allows user to stick notes for specific url.
Web Notesとは何ですか?
Web Notesはhttps://sunnysinghdev.blogspot.comによって開発されたChromeの拡張機能で、その主な機能は「Allows user to stick notes for specific url.」です。
拡張機能のスクリーンショット
Web Notes拡張機能のCRXファイルをダウンロード
Web Notes拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Web Notes is a chrome extension that allows user to save notes based on a part(tag) of a url. So whenever you visit the url it will show notes saved related to tag in the url. 拡張機能の基本情報
| 名前 | |
| ID | lhoaebkagfpaglcedmehlkbmchagmimj |
| 公式URL | https://chromewebstore.google.com/detail/web-notes/lhoaebkagfpaglcedmehlkbmchagmimj |
| 説明 | Allows user to stick notes for specific url. |
| ファイルサイズ | 37.45 KB |
| インストール数 | 254 |
| 現在のバージョン | 0.1 |
| 最終更新日 | 2018-01-19 |
| 公開日 | 2018-01-18 |
| 評価 | 5.00/5 合計 1 レビュー |
| 開発者 | https://sunnysinghdev.blogspot.com |
| 支払い方法 | free |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Web Notes",
"version": "0.1",
"description": "Allows user to stick notes for specific url.",
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"https:\/\/*\/*",
"http:\/\/*\/*"
],
"js": [
"jquery-3.2.1.min.js",
"content.js"
]
}
],
"permissions": [
"storage",
"tabs",
"activeTab"
],
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"commands": {
"toggle-feature": {
"suggested_key": {
"default": "Ctrl+Shift+0",
"mac": "Command+Shift+0"
},
"description": "Toggle the helpcenter screen",
"global": true
},
"_execute_browser_action": {
"suggested_key": {
"windows": "Ctrl+Shift+9",
"mac": "Command+Shift+9",
"chromeos": "Ctrl+Shift+9",
"linux": "Ctrl+Shift+9"
}
}
}
} | |