Narwhal
Narwhal is an extension for skipping lengthy recipe blog introductions.
Hvad er Narwhal?
Narwhal er en Chrome-udvidelse udviklet af matlsn, og dens hovedfunktion er "Narwhal is an extension for skipping lengthy recipe blog introductions.".
Udvidelsesskærmbilleder
Download Narwhal-udvidelses-CRX-fil
Download Narwhal-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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æggende oplysninger om udvidelsen
| Navn | |
| ID | anpnihlhmokhgcdoobohmdbfmibbfgpb |
| Officiel URL | https://chromewebstore.google.com/detail/narwhal/anpnihlhmokhgcdoobohmdbfmibbfgpb |
| Beskrivelse | Narwhal is an extension for skipping lengthy recipe blog introductions. |
| Filstørrelse | 25.83 KB |
| Antal Installationer | 46 |
| Nuværende Version | 0.1.0 |
| Senest Opdateret | 2019-07-06 |
| Udgivelsesdato | 2019-06-30 |
| Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
| Udvikler | matlsn |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | https://github.com/mn6/narwhal |
| Hjælpeside-URL | https://github.com/mn6/narwhal |
| Understøttede Sprog | 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"
]
} | |