GoNotes

Easy, accesible notes on every page.

GoNotesคืออะไร?

GoNotes เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "Easy, accesible notes on every page."

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

screenshot
screenshot
screenshot

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

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

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

                        GoNotes is a extension that makes it easy for people to take notes in every tab!

Just by inputting a title and a note, users are able to create unique notes and save them on the New Tab page. 

Right now, GoNotes is still in alpha and still needs a lot of work before it is a fully-fledged project. Any feedback into bugs and new features that would improve the functionality of the app can be left in the comments. Thanks!                    

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

ชื่อ GoNotes GoNotes
ID lnheclbpjkkoocnpmbobhamfkfpblnlm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/gonotes/lnheclbpjkkoocnpmbobhamfkfpblnlm
คำอธิบาย Easy, accesible notes on every page.
ขนาดไฟล์ 15.8 KB
จำนวนการติดตั้ง 67
เวอร์ชันปัจจุบัน 1.0.0
อัปเดตครั้งล่าสุด 2019-08-10
วันที่เผยแพร่ 2019-08-09
ผู้พัฒนา Unknown
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GoNotes",
    "version": "1.0.0",
    "description": "Easy, accesible notes on every page.",
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Ctrl + Shift + E",
                "mac": "Command + Shift + E"
            }
        }
    },
    "chrome_url_overrides": {
        "newtab": "newTab.html"
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        },
        "default_title": "Notes",
        "default_popup": "popup.html"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "manifest_version": 2
}