Narwhal
Narwhal is an extension for skipping lengthy recipe blog introductions.
Vad är Narwhal?
Narwhal är en Chrome-tillägg utvecklad av matlsn, och dess huvudfunktion är "Narwhal is an extension for skipping lengthy recipe blog introductions.".
Tilläggsskärmbilder
Ladda ner Narwhal-förlängningens CRX-fil
Ladda ner Narwhal-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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 Grundläggande Information om Tillägg
| Namn | |
| ID | anpnihlhmokhgcdoobohmdbfmibbfgpb |
| Officiell webbadress | https://chromewebstore.google.com/detail/narwhal/anpnihlhmokhgcdoobohmdbfmibbfgpb |
| Beskrivning | Narwhal is an extension for skipping lengthy recipe blog introductions. |
| Filstorlek | 25.83 KB |
| Antal Installationer | 46 |
| Aktuell Version | 0.1.0 |
| Senast Uppdaterad | 2019-07-06 |
| Publiceringsdatum | 2019-06-30 |
| Betyg | 5.00/5 Totalt 1 Betyg |
| Utvecklare | matlsn |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/mn6/narwhal |
| Hjälpsida URL | https://github.com/mn6/narwhal |
| Stödda Språk | 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"
]
} | |