Narwhal

Narwhal is an extension for skipping lengthy recipe blog introductions.

Narwhalとは何ですか?

Narwhalはmatlsnによって開発されたChromeの拡張機能で、その主な機能は「Narwhal is an extension for skipping lengthy recipe blog introductions.」です。

拡張機能のスクリーンショット

screenshot

Narwhal拡張機能のCRXファイルをダウンロード

Narwhal拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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                    

拡張機能の基本情報

名前 Narwhal Narwhal
ID anpnihlhmokhgcdoobohmdbfmibbfgpb
公式URL https://chromewebstore.google.com/detail/narwhal/anpnihlhmokhgcdoobohmdbfmibbfgpb
説明 Narwhal is an extension for skipping lengthy recipe blog introductions.
ファイルサイズ 25.83 KB
インストール数 46
現在のバージョン 0.1.0
最終更新日 2019-07-06
公開日 2019-06-30
評価 5.00/5 合計 1 レビュー
開発者 matlsn
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/mn6/narwhal
ヘルプページのURL https://github.com/mn6/narwhal
対応言語 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"
    ]
}