Add to Shaarli

This extension lets you add the current tab or a note to your Shaarli instance.

Vad är Add to Shaarli?

Add to Shaarli är en Chrome-tillägg utvecklad av Lucas Bürgy, och dess huvudfunktion är "This extension lets you add the current tab or a note to your Shaarli instance.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Add to Shaarli-förlängningens CRX-fil

Ladda ner Add to Shaarli-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

                        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äggande Information om Tillägg

Namn Add to Shaarli Add to Shaarli
ID jhfblapoehcfajokolimghdfmeeakbee
Officiell webbadress https://chromewebstore.google.com/detail/add-to-shaarli/jhfblapoehcfajokolimghdfmeeakbee
Beskrivning This extension lets you add the current tab or a note to your Shaarli instance.
Filstorlek 99.53 KB
Antal Installationer 1,473
Aktuell Version 1.1.0
Senast Uppdaterad 2021-03-20
Publiceringsdatum 2019-03-24
Betyg 5.00/5 Totalt 4 Betyg
Utvecklare Lucas Bürgy
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/burgyl/AddToShaarli
Stödda Språk 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"
        }
    }
}