Narwhal
Narwhal is an extension for skipping lengthy recipe blog introductions.
Cos'è Narwhal?
Narwhal è un'estensione di Chrome sviluppata da matlsn, e la sua funzione principale è "Narwhal is an extension for skipping lengthy recipe blog introductions.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Narwhal
Scarica i file di estensione Narwhal in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Narwhal |
ID | anpnihlhmokhgcdoobohmdbfmibbfgpb |
URL Ufficiale | https://chromewebstore.google.com/detail/narwhal/anpnihlhmokhgcdoobohmdbfmibbfgpb |
Descrizione | Narwhal is an extension for skipping lengthy recipe blog introductions. |
Dimensione del File | 25.83 KB |
Conteggio Installazioni | 46 |
Versione Corrente | 0.1.0 |
Ultimo Aggiornamento | 2019-07-06 |
Data di Pubblicazione | 2019-06-30 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | matlsn |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/mn6/narwhal |
URL della Pagina di Aiuto | https://github.com/mn6/narwhal |
Lingue Supportate | 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" ] } |