Narwhal
Narwhal is an extension for skipping lengthy recipe blog introductions.
Что такое Narwhal?
Narwhal - это расширение Chrome, разработанное matlsn, и его основная функция - "Narwhal is an extension for skipping lengthy recipe blog introductions.".
Снимки экрана расширения
Скачать файл CRX расширения Narwhal
Скачайте файлы расширений Narwhal в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Tiny extension that adds "Skip to Recipe" links to recipe blogs, allowing you to skip directly to the recipe instructions. GitHub Repository: https://github.com/mn6/narwhal
Основная информация о расширении
Название | Narwhal |
ID | anpnihlhmokhgcdoobohmdbfmibbfgpb |
Официальный URL | https://chromewebstore.google.com/detail/narwhal/anpnihlhmokhgcdoobohmdbfmibbfgpb |
Описание | Narwhal is an extension for skipping lengthy recipe blog introductions. |
Размер файла | 25.83 KB |
Количество установок | 46 |
Текущая Версия | 0.1.0 |
Последнее Обновление | 2019-07-06 |
Дата публикации | 2019-06-30 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | matlsn |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/mn6/narwhal |
URL страницы помощи | https://github.com/mn6/narwhal |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Narwhal", "version": "0.1.0", "background": { "scripts": [ "src\/base\/bg.js" ], "persistent": true }, "browser_action": [], "content_scripts": [ { "js": [ "src\/modifications\/recipe.js" ], "matches": [ "*:\/\/*\/*" ] } ], "description": "Narwhal is an extension for skipping lengthy recipe blog introductions.", "icons": { "16": "resources\/icon16.png", "48": "resources\/icon48.png", "128": "resources\/icon128.png" }, "homepage_url": "https:\/\/github.com\/mn6\/narwhal", "permissions": [ "*:\/\/*\/*", "activeTab" ] } |