Oreo
奥利奥!!!
Что такое Oreo?
Oreo - это расширение Chrome, разработанное Todd, и его основная функция - "奥利奥!!!".
Снимки экрана расширения
Скачать файл CRX расширения Oreo
Скачайте файлы расширений Oreo в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Flush Chrome DNS resolver cache for current tab and reload
Intended Use:
Oreo allows you to quickly flush Chrome DNS resolver cache and close all opened sockets;
It's very helpful for developers who need to test in a clean environment.
But first you should go to `chrome://flags/#extensions-on-chrome-urls`, and then enable the feature;
Enjoy :)
-----------------------------------------
Author:
Name: Todd
Email: [email protected] Основная информация о расширении
| Название | |
| ID | lhldjkkbeckjcdnjeecijiokogimbhmo |
| Официальный URL | https://chromewebstore.google.com/detail/oreo/lhldjkkbeckjcdnjeecijiokogimbhmo |
| Описание | 奥利奥!!! |
| Размер файла | 18.83 KB |
| Количество установок | 78 |
| Текущая Версия | 1.0 |
| Последнее Обновление | 2022-12-10 |
| Дата публикации | 2022-06-20 |
| Рейтинг | 5.00/5 Всего 12 оценок |
| Разработчик | Todd |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Oreo",
"version": "1.0",
"description": "\u5965\u5229\u5965\uff01\uff01\uff01",
"author": "Todd",
"icons": {
"48": "icon.png",
"128": "icon.png"
},
"action": {
"default_icon": "icon.png",
"default_title": "\u51b2\u554a\uff01\u5965\u5229\u5965\uff01"
},
"background": {
"service_worker": "background.js"
},
"permissions": [
"scripting"
],
"host_permissions": [
"chrome:\/\/net-internals\/#sockets",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self' ;"
}
} | |