Coder Notes
This extension allows you to save snippets of code from around the web
Co to jest Coder Notes?
Coder Notes to rozszerzenie Chrome opracowane przez codernotesdev, a jego główną funkcją jest „This extension allows you to save snippets of code from around the web”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Coder Notes
Pobierz pliki rozszerzeń Coder Notes w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
You can download the Coder Notes Chrome Extension to save snippets of code from your browser.
Podstawowe informacje o rozszerzeniu
Nazwa | Coder Notes |
ID | ajpkpmmiaofbkfchcombbcgjpibnpgfp |
Oficjalny URL | https://chromewebstore.google.com/detail/coder-notes/ajpkpmmiaofbkfchcombbcgjpibnpgfp |
Opis | This extension allows you to save snippets of code from around the web |
Rozmiar pliku | 51.63 KB |
Liczba instalacji | 16 |
Aktualna Wersja | 0.0.0.3 |
Ostatnia Aktualizacja | 2016-04-03 |
Data Publikacji | 2016-04-03 |
Ocena | 3.50/5 Łącznie 2 Oceny |
Deweloper | codernotesdev |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | http://codernotes.us |
Obsługiwane Języki | 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\/*" ] } } |