Narwhal

Narwhal is an extension for skipping lengthy recipe blog introductions.

Apa itu Narwhal?

Narwhal adalah ekstensi Chrome yang dikembangkan oleh matlsn, dan fitur utamanya adalah "Narwhal is an extension for skipping lengthy recipe blog introductions.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Narwhal

Unduh file ekstensi Narwhal dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Narwhal Narwhal
ID anpnihlhmokhgcdoobohmdbfmibbfgpb
URL Resmi https://chromewebstore.google.com/detail/narwhal/anpnihlhmokhgcdoobohmdbfmibbfgpb
Deskripsi Narwhal is an extension for skipping lengthy recipe blog introductions.
Ukuran File 25.83 KB
Jumlah Instalasi 46
Versi Saat Ini 0.1.0
Terakhir Diperbarui 2019-07-06
Tanggal Publikasi 2019-06-30
Penilaian 5.00/5 Total 1 Penilaian
Pengembang matlsn
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/mn6/narwhal
URL Halaman Bantuan https://github.com/mn6/narwhal
Bahasa yang Didukung 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"
    ]
}