Narwhal
Narwhal is an extension for skipping lengthy recipe blog introductions.
O que é Narwhal?
Narwhal é uma extensão do Chrome desenvolvida por matlsn, e sua principal característica é "Narwhal is an extension for skipping lengthy recipe blog introductions.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Narwhal
Baixe arquivos de extensão Narwhal no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Narwhal |
ID | anpnihlhmokhgcdoobohmdbfmibbfgpb |
URL Oficial | https://chromewebstore.google.com/detail/narwhal/anpnihlhmokhgcdoobohmdbfmibbfgpb |
Descrição | Narwhal is an extension for skipping lengthy recipe blog introductions. |
Tamanho do Arquivo | 25.83 KB |
Contagem de Instalações | 46 |
Versão Atual | 0.1.0 |
Última Atualização | 2019-07-06 |
Data de Publicação | 2019-06-30 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | matlsn |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/mn6/narwhal |
URL da Página de Ajuda | https://github.com/mn6/narwhal |
Idiomas Suportados | 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" ] } |