Coder Notes

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

Coder Notes là gì?

Coder Notes là một tiện ích mở rộng Chrome được phát triển bởi codernotesdev, và tính năng chính của nó là "This extension allows you to save snippets of code from around the web".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Coder Notes

Tải xuống các tệp mở rộng Coder Notes dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Coder Notes Coder Notes
ID ajpkpmmiaofbkfchcombbcgjpibnpgfp
URL Chính Thức https://chromewebstore.google.com/detail/coder-notes/ajpkpmmiaofbkfchcombbcgjpibnpgfp
Mô tả This extension allows you to save snippets of code from around the web
Kích Thước Tệp 51.63 KB
Số Lần Cài Đặt 16
Phiên Bản Hiện Tại 0.0.0.3
Cập Nhật Lần Cuối 2016-04-03
Ngày Phát Hành 2016-04-03
Đánh Giá 3.50/5 Tổng số 2 Đánh Giá
Nhà Phát Triển codernotesdev
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://codernotes.us
Ngôn Ngữ Được Hỗ Trợ 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\/*"
        ]
    }
}