Narwhal

Narwhal is an extension for skipping lengthy recipe blog introductions.

Co to jest Narwhal?

Narwhal to rozszerzenie Chrome opracowane przez matlsn, a jego główną funkcją jest „Narwhal is an extension for skipping lengthy recipe blog introductions.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Narwhal

Pobierz pliki rozszerzeń Narwhal w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Narwhal Narwhal
ID anpnihlhmokhgcdoobohmdbfmibbfgpb
Oficjalny URL https://chromewebstore.google.com/detail/narwhal/anpnihlhmokhgcdoobohmdbfmibbfgpb
Opis Narwhal is an extension for skipping lengthy recipe blog introductions.
Rozmiar pliku 25.83 KB
Liczba instalacji 46
Aktualna Wersja 0.1.0
Ostatnia Aktualizacja 2019-07-06
Data Publikacji 2019-06-30
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper matlsn
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/mn6/narwhal
Adres URL Strony Pomocy https://github.com/mn6/narwhal
Obsługiwane Języki 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"
    ]
}