Coder Notes
This extension allows you to save snippets of code from around the web
Apa itu Coder Notes?
Coder Notes adalah ekstensi Chrome yang dikembangkan oleh codernotesdev, dan fitur utamanya adalah "This extension allows you to save snippets of code from around the web".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Coder Notes
Unduh file ekstensi Coder Notes dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
You can download the Coder Notes Chrome Extension to save snippets of code from your browser.
Informasi Dasar Ekstensi
Nama | Coder Notes |
ID | ajpkpmmiaofbkfchcombbcgjpibnpgfp |
URL Resmi | https://chromewebstore.google.com/detail/coder-notes/ajpkpmmiaofbkfchcombbcgjpibnpgfp |
Deskripsi | This extension allows you to save snippets of code from around the web |
Ukuran File | 51.63 KB |
Jumlah Instalasi | 16 |
Versi Saat Ini | 0.0.0.3 |
Terakhir Diperbarui | 2016-04-03 |
Tanggal Publikasi | 2016-04-03 |
Penilaian | 3.50/5 Total 2 Penilaian |
Pengembang | codernotesdev |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | http://codernotes.us |
Bahasa yang Didukung | 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\/*" ] } } |