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"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

stickynote tab 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        * 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 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
이메일 [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"
    }
}