Narwhal

Narwhal is an extension for skipping lengthy recipe blog introductions.

Wat is Narwhal?

Narwhal is een Chrome-extensie ontwikkeld door matlsn, en de belangrijkste functie is "Narwhal is an extension for skipping lengthy recipe blog introductions.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Narwhal

Download Narwhal-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Narwhal Narwhal
ID anpnihlhmokhgcdoobohmdbfmibbfgpb
Officiële URL https://chromewebstore.google.com/detail/narwhal/anpnihlhmokhgcdoobohmdbfmibbfgpb
Beschrijving Narwhal is an extension for skipping lengthy recipe blog introductions.
Bestandsgrootte 25.83 KB
Aantal Installaties 46
Huidige Versie 0.1.0
Laatst Bijgewerkt 2019-07-06
Publicatiedatum 2019-06-30
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar matlsn
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/mn6/narwhal
Help Pagina-URL https://github.com/mn6/narwhal
Ondersteunde Talen 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"
    ]
}