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