Narwhal

Narwhal is an extension for skipping lengthy recipe blog introductions.

Qu'est-ce que Narwhal ?

Narwhal est une extension Chrome développée par matlsn, et sa fonction principale est "Narwhal is an extension for skipping lengthy recipe blog introductions.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Narwhal

Téléchargez les fichiers d'extension Narwhal au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Narwhal Narwhal
ID anpnihlhmokhgcdoobohmdbfmibbfgpb
URL Officiel https://chromewebstore.google.com/detail/narwhal/anpnihlhmokhgcdoobohmdbfmibbfgpb
Description Narwhal is an extension for skipping lengthy recipe blog introductions.
Taille du Fichier 25.83 KB
Nombre d'Installations 46
Version Actuelle 0.1.0
Dernière Mise à Jour 2019-07-06
Date de Publication 2019-06-30
Évaluation 5.00/5 Total 1 Évaluations
Développeur matlsn
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/mn6/narwhal
URL de la Page d'Aide https://github.com/mn6/narwhal
Langues Prises en Charge 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"
    ]
}