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」です。
拡張機能のスクリーンショット
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 |
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 |
Eメール | [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\/*" ] } } |