Narwhal
Narwhal is an extension for skipping lengthy recipe blog introductions.
Narwhal là gì?
Narwhal là một tiện ích mở rộng Chrome được phát triển bởi matlsn, và tính năng chính của nó là "Narwhal is an extension for skipping lengthy recipe blog introductions.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Narwhal
Tải xuống các tệp mở rộng Narwhal dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Narwhal |
ID | anpnihlhmokhgcdoobohmdbfmibbfgpb |
URL Chính Thức | https://chromewebstore.google.com/detail/narwhal/anpnihlhmokhgcdoobohmdbfmibbfgpb |
Mô tả | Narwhal is an extension for skipping lengthy recipe blog introductions. |
Kích Thước Tệp | 25.83 KB |
Số Lần Cài Đặt | 46 |
Phiên Bản Hiện Tại | 0.1.0 |
Cập Nhật Lần Cuối | 2019-07-06 |
Ngày Phát Hành | 2019-06-30 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | matlsn |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/mn6/narwhal |
URL Trang Trợ Giúp | https://github.com/mn6/narwhal |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |