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.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Narwhal
قم بتنزيل ملفات الامتداد Narwhal بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
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 |
عنوان صفحة المساعدة | 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" ] } |