Add to Shaarli
This extension lets you add the current tab or a note to your Shaarli instance.
Hvad er Add to Shaarli?
Add to Shaarli er en Chrome-udvidelse udviklet af Lucas Bürgy, og dens hovedfunktion er "This extension lets you add the current tab or a note to your Shaarli instance.".
Udvidelsesskærmbilleder
Download Add to Shaarli-udvidelses-CRX-fil
Download Add to Shaarli-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
                        You have to setup your Shaarli instance in the options first.
- On click : Add current tab
- Alt+S : Add current tab
- Alt+N : Add a note
This extension is open source and available here: https://github.com/burgyl/AddToShaarli                     Grundlæggende oplysninger om udvidelsen
| Navn |   |  
| ID | jhfblapoehcfajokolimghdfmeeakbee | 
| Officiel URL | https://chromewebstore.google.com/detail/add-to-shaarli/jhfblapoehcfajokolimghdfmeeakbee | 
| Beskrivelse | This extension lets you add the current tab or a note to your Shaarli instance. | 
| Filstørrelse | 99.53 KB | 
| Antal Installationer | 1,473 | 
| Nuværende Version | 1.1.0 | 
| Senest Opdateret | 2021-03-20 | 
| Udgivelsesdato | 2019-03-24 | 
| Bedømmelse | 5.00/5 Samlet 4 Bedømmelser | 
| Udvikler | Lucas Bürgy | 
| [email protected] | |
| Betalingsmetode | free | 
| Udvidelseswebsted | https://github.com/burgyl/AddToShaarli | 
| Understøttede Sprog | en | 
| manifest.json | |
 {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Add to Shaarli",
    "description": "This extension lets you add the current tab or a note to your Shaarli instance.",
    "version": "1.1.0",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "commands": {
        "add-url": {
            "suggested_key": {
                "default": "Alt+S"
            },
            "description": "Add current tab"
        },
        "add-note": {
            "suggested_key": {
                "default": "Alt+N"
            },
            "description": "Add a note"
        }
    }
}  |  |