Coder Notes
This extension allows you to save snippets of code from around the web
ما هو Coder Notes؟
Coder Notes هو إضافة Chrome تم تطويرها بواسطة codernotesdev، والميزة الرئيسية لها هي "This extension allows you to save snippets of code from around the web".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Coder Notes
قم بتنزيل ملفات الامتداد Coder Notes بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
البريد الإلكتروني | [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\/*" ] } } |