Narwhal
Narwhal is an extension for skipping lengthy recipe blog introductions.
Co je Narwhal?
Narwhal je rozšíření Chrome vyvinuté matlsn, a jeho hlavní funkcí je „Narwhal is an extension for skipping lengthy recipe blog introductions.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Narwhal
Stáhněte si soubory rozšíření Narwhal ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | Narwhal |
ID | anpnihlhmokhgcdoobohmdbfmibbfgpb |
Oficiální URL | https://chromewebstore.google.com/detail/narwhal/anpnihlhmokhgcdoobohmdbfmibbfgpb |
Popis | Narwhal is an extension for skipping lengthy recipe blog introductions. |
Velikost souboru | 25.83 KB |
Počet instalací | 46 |
Aktuální Verze | 0.1.0 |
Poslední Aktualizace | 2019-07-06 |
Datum Vydání | 2019-06-30 |
Hodnocení | 5.00/5 Celkem 1 Hodnocení |
Vývojář | matlsn |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/mn6/narwhal |
URL Stránky Nápovědy | https://github.com/mn6/narwhal |
Podporované Jazyky | 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" ] } |