Pixel Talk

Let's talk about the pixels in this page

Что такое Pixel Talk?

Pixel Talk - это расширение Chrome, разработанное https://moraga.com.br, и его основная функция - "Let's talk about the pixels in this page".

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

screenshot

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

Скачайте файлы расширений Pixel Talk в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Create and share annotations on any web page. The annotations are visible to all users of the plugin. You can drag and drop for better message transmit.                    

Основная информация о расширении

Название Pixel Talk Pixel Talk
ID nofdmnmoloanabhpnjokkkpfhjgjbmmo
Официальный URL https://chromewebstore.google.com/detail/pixel-talk/nofdmnmoloanabhpnjokkkpfhjgjbmmo
Описание Let's talk about the pixels in this page
Размер файла 8.58 KB
Количество установок 10
Текущая Версия 0.2
Последнее Обновление 2014-12-23
Дата публикации 2014-12-23
Разработчик https://moraga.com.br
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Pixel Talk",
    "version": "0.2",
    "description": "Let's talk about the pixels in this page",
    "homepage_url": "http:\/\/moraga.com.br\/pixeltalk",
    "manifest_version": 2,
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "http:\/\/moraga.com.br\/"
    ]
}