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".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Coder Notes

Скачайте файлы расширений 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\/*"
        ]
    }
}