Hyliter

Saves selected bits of text from your browsing.

Vad är Hyliter?

Hyliter är en Chrome-tillägg utvecklad av Bibek Ghimire, och dess huvudfunktion är "Saves selected bits of text from your browsing.".

Tilläggsskärmbilder

screenshot

Ladda ner Hyliter-förlängningens CRX-fil

Ladda ner Hyliter-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

                        Save important text for later while browsing the web.

You can save quotes, confirmation numbers, or even personal notes.                    

Grundläggande Information om Tillägg

Namn Hyliter Hyliter
ID nhiannhalledfohikpmbclkalcknilcg
Officiell webbadress https://chromewebstore.google.com/detail/hyliter/nhiannhalledfohikpmbclkalcknilcg
Beskrivning Saves selected bits of text from your browsing.
Filstorlek 63.43 KB
Antal Installationer 31
Aktuell Version 0.1
Senast Uppdaterad 2017-01-02
Publiceringsdatum 2017-01-02
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare Bibek Ghimire
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Hyliter",
    "description": "Saves selected bits of text from your browsing.",
    "version": "0.1",
    "permissions": [
        "contextMenus"
    ],
    "web_accessible_resources": [
        "fonts\/*.woff2"
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "css\/content.css"
            ],
            "js": [
                "js\/jquery-3.1.1.min.js",
                "js\/content.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "View Hylites",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icons\/icon16.png",
            "24": "icons\/icon24.png",
            "32": "icons\/icon32.png"
        }
    },
    "background": {
        "scripts": [
            "js\/jquery-3.1.1.min.js",
            "js\/hyliter.js",
            "js\/background.js"
        ],
        "persistent": true
    }
}