Chrome Note Keeper

Chrome Note Keeper: keep notes on specific websites pages.

Chrome Note Keeperคืออะไร?

Chrome Note Keeper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Alessandro Pietrantonio และคุณลักษณะหลักของมันคือ "Chrome Note Keeper: keep notes on specific websites pages."

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

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Chrome Note Keeper

ดาวน์โหลดไฟล์ส่วนขยาย Chrome Note Keeper ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Keep notes on every website page and read it whenever you want!
This extension give you the ability to write down notes about a specific web page and save it to Chrome storage.
A little badge near the extension icon notify you the presence of a note.

CHANGELOGS:

--- v1.0 ---
- Updated manifest file
- Fixes on background

--- v0.5 ---
- Fixes on icon badge

--- v0.4 ---
- Added icon badge to notify the presence of notes

--- v0.3 ---
- Added import/export to options page
- Fixes on options page
- Larger textarea on popup
- Fixes on popup

--- v0.2 ---
- Textarea label fixed

--- v0.1 ---
- First release                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Chrome Note Keeper Chrome Note Keeper
ID llocbjbocnpindmhcankkhiidpfaiedp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/chrome-note-keeper/llocbjbocnpindmhcankkhiidpfaiedp
คำอธิบาย Chrome Note Keeper: keep notes on specific websites pages.
ขนาดไฟล์ 31.8 KB
จำนวนการติดตั้ง 311
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2022-04-22
วันที่เผยแพร่ 2020-07-04
คะแนน 4.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Alessandro Pietrantonio
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/pietrantonio91/chrome-note-keeper
URL หน้าช่วยเหลือ https://alessandropietrantonio.it/
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Chrome Note Keeper",
    "version": "1.0",
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icons\/notekeeper16.png",
            "32": "icons\/notekeeper32.png",
            "64": "icons\/notekeeper64.png",
            "128": "icons\/notekeeper128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_idle",
            "all_frames": true,
            "match_about_blank": true
        }
    ],
    "options_page": "options.html",
    "description": "Chrome Note Keeper: keep notes on specific websites pages.",
    "icons": {
        "16": "icons\/notekeeper16.png",
        "32": "icons\/notekeeper32.png",
        "64": "icons\/notekeeper64.png",
        "128": "icons\/notekeeper128.png"
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "manifest_version": 3,
    "permissions": [
        "storage",
        "tabs"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}