Websee

This extension powers Websee, the most popular daily links and discussions across the web, from anonymous extension users like you!

Что такое Websee?

Websee - это расширение Chrome, разработанное https://websee.io, и его основная функция - "This extension powers Websee, the most popular daily links and discussions across the web, from anonymous extension users like you!".

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

screenshot
screenshot

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

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

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

                        Join the collective mind of the web! Create private groups to automatically share the web content you and friends discover. More features on the way.

https://www.websee.io/

The extension codebase is completely open source and freely licensed under the GNU General Public License. The code repository can be viewed at https://github.com/lasernite/websee_ext. We welcome your contributions!                    

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

Название Websee Websee
ID pcpblbaphpngepnmihnboflfjaibgoek
Официальный URL https://chromewebstore.google.com/detail/websee/pcpblbaphpngepnmihnboflfjaibgoek
Описание This extension powers Websee, the most popular daily links and discussions across the web, from anonymous extension users like you!
Размер файла 79.49 KB
Количество установок 27
Текущая Версия 0.6
Последнее Обновление 2017-03-25
Дата публикации 2017-03-25
Рейтинг 5.00/5 Всего 2 оценок
Разработчик https://websee.io
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://www.websee.io/
URL страницы политики конфиденциальности https://www.newstream.io/privacy_policy
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Websee",
    "short_name": "Websee",
    "description": "This extension powers Websee, the most popular daily links and discussions across the web, from anonymous extension users like you!",
    "version": "0.6",
    "permissions": [
        "activeTab",
        "tabs",
        "webNavigation",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Websee - The Sea of the Web",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.websee.io\/*",
                "https:\/\/www.websee.io\/*"
            ],
            "js": [
                "websee.js"
            ]
        }
    ]
}