Latest News Loader

This extension helps you simply read the world news. All you need to do is to select a keyword

Что такое Latest News Loader?

Latest News Loader - это расширение Chrome, разработанное florance.co.media, и его основная функция - "This extension helps you simply read the world news. All you need to do is to select a keyword".

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

screenshot
screenshot

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

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

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

                        Latest News Loader is a browser extension that keeps you up-to-date with the latest news from around the world. With this extension, you can easily access the top 10 news stories of the day directly from your browser. Simply click on the extension icon to see a list of the latest headlines and click on any of them to read the full article. Stay informed and never miss a beat with Latest News Loader!                    

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

Название Latest News Loader Latest News Loader
ID cjjiphmgiokbapplkebjnbmefhhnedef
Официальный URL https://chrome.google.com/webstore/detail/latest-news-loader/cjjiphmgiokbapplkebjnbmefhhnedef
Описание This extension helps you simply read the world news. All you need to do is to select a keyword
Размер файла 13.81 KB
Количество установок 451
Текущая Версия 1
Последнее Обновление 2022-12-21
Дата публикации 2022-12-21
Разработчик florance.co.media
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://home.reportionbreedy.xyz/
URL страницы помощи https://home.reportionbreedy.xyz/contact.html
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "action": {
        "default_icon": "logo.png",
        "default_title": "Latest News Loader",
        "default_popup": "popup.html"
    },
    "description": "This extension helps you simply read the world news. All you need to do is to select a keyword",
    "icons": {
        "128": "logo.png"
    },
    "manifest_version": 3,
    "name": "Latest News Loader",
    "version": "1",
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icons\/*.svg"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ]
}