stickynote tab
override the new tab page so that user can create sticky notes to take notes
stickynote tabとは何ですか?
stickynote tabはellayang40によって開発されたChromeの拡張機能で、その主な機能は「override the new tab page so that user can create sticky notes to take notes」です。
拡張機能のスクリーンショット
stickynote tab拡張機能のCRXファイルをダウンロード
stickynote tab拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
* use new tab page to take quick notes on sticky notes * notes will be saved in the browser so that next time you open the new tab page, you will see your notes * note allows text formatting such as bolding, lists, changing font color, etc * can create, delete, and move notes * can minimize and maximize the notes Great for creating todo list and other quick notes for temporary use.
拡張機能の基本情報
名前 | stickynote tab |
ID | cpnckoglpiageliaeeopbhdahilnjeeb |
公式URL | https://chromewebstore.google.com/detail/stickynote-tab/cpnckoglpiageliaeeopbhdahilnjeeb |
説明 | override the new tab page so that user can create sticky notes to take notes |
ファイルサイズ | 3.48 MB |
インストール数 | 193 |
現在のバージョン | 1.1 |
最終更新日 | 2021-09-14 |
公開日 | 2020-05-08 |
評価 | 4.50/5 合計 2 レビュー |
開発者 | ellayang40 |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/yinglan98/chrome-ext---sticky |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "stickynote tab", "version": "1.1", "description": "override the new tab page so that user can create sticky notes to take notes", "permissions": [ "storage", "tabs" ], "manifest_version": 2, "chrome_url_overrides": { "newtab": "dis_quill_1.html" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "icons": { "16": "images\/sticky_icon_16.png", "48": "images\/sticky_icon_48.png", "128": "images\/sticky_icon_128.png" } } |