Narwhal
Narwhal is an extension for skipping lengthy recipe blog introductions.
Narwhal क्या है?
Narwhal matlsn द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Narwhal is an extension for skipping lengthy recipe blog introductions."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Narwhal एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
सहायता पृष्ठ 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" ] } |