Coder Notes

This extension allows you to save snippets of code from around the web

Coder Notesคืออะไร?

Coder Notes เป็นส่วนขยายของ Chrome ที่พัฒนาโดย codernotesdev และคุณลักษณะหลักของมันคือ "This extension allows you to save snippets of code from around the web"

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

screenshot

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

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

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

                        You can download the Coder Notes Chrome Extension to save snippets of code from your browser.                    

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

ชื่อ Coder Notes Coder Notes
ID ajpkpmmiaofbkfchcombbcgjpibnpgfp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/coder-notes/ajpkpmmiaofbkfchcombbcgjpibnpgfp
คำอธิบาย This extension allows you to save snippets of code from around the web
ขนาดไฟล์ 51.63 KB
จำนวนการติดตั้ง 16
เวอร์ชันปัจจุบัน 0.0.0.3
อัปเดตครั้งล่าสุด 2016-04-03
วันที่เผยแพร่ 2016-04-03
คะแนน 3.50/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา codernotesdev
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://codernotes.us
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Coder Notes",
    "description": "This extension allows you to save snippets of code from around the web",
    "version": "0.0.0.3",
    "browser_action": {
        "default_icon": "img\/codernotesCE.png",
        "default_popup": "login.html",
        "default_title": "Save to Coder Notes"
    },
    "permissions": [
        "storage",
        "unlimitedStorage",
        "activeTab",
        "https:\/\/ajax.googleapis.com\/",
        "tabs",
        "http:\/\/limitless-island-46764.herokuapp.com\/*"
    ],
    "background": {
        "scripts": [
            "jquery-1.12.2.min.js",
            "popup.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/limitless-island-46764.herokuapp.com\/*"
            ],
            "js": [
                "jquery-1.12.2.min.js",
                "popup.js"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "http:\/\/limitless-island-46764.herokuapp.com\/*"
        ]
    }
}