stickynote tab

override the new tab page so that user can create sticky notes to take notes

stickynote tabคืออะไร?

stickynote tab เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ellayang40 และคุณลักษณะหลักของมันคือ "override the new tab page so that user can create sticky notes to take notes"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย stickynote tab

ดาวน์โหลดไฟล์ส่วนขยาย 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 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"
    }
}