Narwhal

Narwhal is an extension for skipping lengthy recipe blog introductions.

Was ist Narwhal?

Narwhal ist eine Chrome-Erweiterung, die von matlsn entwickelt wurde, und ihr Hauptmerkmal ist "Narwhal is an extension for skipping lengthy recipe blog introductions.".

Erweiterungsscreenshots

screenshot

Narwhal-Erweiterungs-CRX-Datei herunterladen

Laden Sie Narwhal-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Narwhal Narwhal
ID anpnihlhmokhgcdoobohmdbfmibbfgpb
Offizielle URL https://chromewebstore.google.com/detail/narwhal/anpnihlhmokhgcdoobohmdbfmibbfgpb
Beschreibung Narwhal is an extension for skipping lengthy recipe blog introductions.
Dateigröße 25.83 KB
Installationsanzahl 46
Aktuelle Version 0.1.0
Letztes Update 2019-07-06
Veröffentlichungsdatum 2019-06-30
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler matlsn
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/mn6/narwhal
Hilfeseite URL https://github.com/mn6/narwhal
Unterstützte Sprachen 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"
    ]
}