Spyglass

A network for sharing and annotating reads with friends.

Что такое Spyglass?

Spyglass - это расширение Chrome, разработанное promeedco, и его основная функция - "A network for sharing and annotating reads with friends.".

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

screenshot

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

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

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

                        Transform articles into personal notebooks by writing your thoughts directly on them!

SpyGlass empowers you to annotate articles with your thoughts and perspectives! After annotating you can seamlessly share a link to your thoughts with friends! We keep all of your thoughts saved in your SpyGlass Home so you have them for later!

Add friends to your SpyGlass Home so you can learn from what they're reading and annotating!                    

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

Название Spyglass Spyglass
ID ehfemogeepgehlddaafibkmfhafkggcg
Официальный URL https://chromewebstore.google.com/detail/spyglass/ehfemogeepgehlddaafibkmfhafkggcg
Описание A network for sharing and annotating reads with friends.
Размер файла 131 KB
Количество установок 29
Текущая Версия 0.1.4
Последнее Обновление 2020-11-02
Дата публикации 2020-07-31
Разработчик promeedco
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://spyglass.space/landingPage/index.html
URL страницы помощи https://spyglass.space/onBoardingPage/index.html
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Spyglass",
    "description": "A network for sharing and annotating reads with friends.",
    "version": "0.1.4",
    "icons": {
        "16": "assets\/icon_16.png",
        "48": "assets\/icon_48.png",
        "128": "assets\/icon_128.png"
    },
    "permissions": [
        "tabs"
    ],
    "background": {
        "page": "src\/views\/background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "src\/js\/jquery-3.5.1.slim.min.js",
                "src\/js\/firebase-app.js",
                "src\/js\/firebase-database.js",
                "src\/js\/firebase-creds.js",
                "src\/js\/content.js"
            ],
            "css": [
                "src\/css\/annotation-styling.css"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Spyglass",
        "default_popup": "src\/views\/popup.html"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/www.gstatic.com; object-src 'self' 'unsafe-eval'; img-src * data: 'self' 'unsafe-eval';"
}