e621 Subscriptions

Adds Watched/Subscribe feature to e621.net

Что такое e621 Subscriptions?

e621 Subscriptions - это расширение Chrome, разработанное milesseventh, и его основная функция - "Adds Watched/Subscribe feature to e621.net".

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

screenshot

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

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

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

                        Extension adds subscription to tags functionality for e621.net, adding "Watched" button into navigation bar at the top of the page and embedding "OwO/XwX (Subscribe/Unsubscribe)" button for every tag shown on the sidebar.

There is also an option to check new images without visiting the site -- just open extension's popup window and it will show amount of new images.                    

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

Название e621 Subscriptions e621 Subscriptions
ID dgjmocajjcibgpkigbnhengiidoehmoo
Официальный URL https://chromewebstore.google.com/detail/e621-subscriptions/dgjmocajjcibgpkigbnhengiidoehmoo
Описание Adds Watched/Subscribe feature to e621.net
Размер файла 75.58 KB
Количество установок 543
Текущая Версия 2.1.1
Последнее Обновление 2023-02-22
Дата публикации 2020-03-13
Рейтинг 4.20/5 Всего 5 оценок
Разработчик milesseventh
Электронная почта [email protected]
Тип оплаты free
URL страницы помощи https://e621.net/forum/show/269304
URL страницы политики конфиденциальности https://pastebin.com/WQddJ0kK
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "e621 Subscriptions",
    "version": "2.1.1",
    "description": "Adds Watched\/Subscribe feature to e621.net",
    "icons": {
        "96": "graphics\/e621.png"
    },
    "permissions": [
        "storage",
        "*:\/\/*.e621.net\/*"
    ],
    "browser_action": {
        "default_icon": "graphics\/e621.png",
        "default_title": "E621 Watched",
        "default_popup": "popup\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.e621.net\/*"
            ],
            "js": [
                "shared.js",
                "combatfox.js"
            ]
        }
    ]
}