Coder Notes

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

什麼是Coder Notes?

Coder Notes是由codernotesdev開發的Chrome擴展程式,該擴展的主要功能是“This extension allows you to save snippets of code from around the web”。

擴展截圖

screenshot

下載Coder Notes擴展crx文件

下載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
官方網址 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\/*"
        ]
    }
}