Momento for Hacker News

Add tags to HN users so you can remember them in the future

Что такое Momento for Hacker News?

Momento for Hacker News - это расширение Chrome, разработанное https://swaglord.co, и его основная функция - "Add tags to HN users so you can remember them in the future".

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

screenshot
screenshot
screenshot

Скачать файл CRX расширения Momento for Hacker News

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

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

                        - Add tags to users on HN: so you can remember all the cool people on there
- Keep track of who works where (astroturfing counter-measures)
- You'll get some pre-existing tags to jump-start your own user tags
- Avoid embarrassing yourself (https://news.ycombinator.com/item?id=35079)
- Unobtrusive by default: stays out of the way when not using tags

- Suggested tags coming soon!
- Syncing coming soon!                    

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

Название Momento for Hacker News Momento for Hacker News
ID ldamdlljpkkejoiohakbapncdjfolgfh
Официальный URL https://chromewebstore.google.com/detail/momento-for-hacker-news/ldamdlljpkkejoiohakbapncdjfolgfh
Описание Add tags to HN users so you can remember them in the future
Размер файла 133 KB
Количество установок 22
Текущая Версия 1.1
Последнее Обновление 2017-07-17
Дата публикации 2017-07-16
Рейтинг 5.00/5 Всего 1 оценок
Разработчик https://swaglord.co
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Momento for Hacker News",
    "short_name": "HN User Tagger",
    "description": "Add tags to HN users so you can remember them in the future",
    "version": "1.1",
    "minimum_chrome_version": "56.0.2924",
    "background": {
        "scripts": [
            ".\/event-page.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": ".\/icon16.png",
        "48": ".\/icon48.png",
        "128": ".\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/news.ycombinator.com\/*"
            ],
            "css": [
                ".\/content-script.css"
            ],
            "js": [
                ".\/content-script.js"
            ]
        }
    ]
}