Narwhal

Narwhal is an extension for skipping lengthy recipe blog introductions.

Narwhalคืออะไร?

Narwhal เป็นส่วนขยายของ Chrome ที่พัฒนาโดย matlsn และคุณลักษณะหลักของมันคือ "Narwhal is an extension for skipping lengthy recipe blog introductions."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Narwhal

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
    ]
}