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".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة stickynote tab
قم بتنزيل ملفات الامتداد stickynote tab بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
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" } } |