Narwhal

Narwhal is an extension for skipping lengthy recipe blog introductions.

What is Narwhal?

Narwhal is a Chrome extension developed by matlsn, and its main feature is "Narwhal is an extension for skipping lengthy recipe blog introductions.".

Extension Screenshots

screenshot

Download Narwhal Extension CRX File

Download Narwhal extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Narwhal Narwhal
ID anpnihlhmokhgcdoobohmdbfmibbfgpb
Official URL https://chromewebstore.google.com/detail/narwhal/anpnihlhmokhgcdoobohmdbfmibbfgpb
Description Narwhal is an extension for skipping lengthy recipe blog introductions.
File Size 25.83 KB
Installation Count 46
Current Version 0.1.0
Last Updated 2019-07-06
Publish Date 2019-06-30
Rating 5.00/5 Total 1 Ratings
Developer matlsn
Email [email protected]
Payment Type free
Extension Website https://github.com/mn6/narwhal
Help Page URL https://github.com/mn6/narwhal
Supported Languages 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"
    ]
}