livejs

chrome extension for livejs

Vad är livejs?

livejs är en Chrome-tillägg utvecklad av https://wenzhixin.net.cn, och dess huvudfunktion är "chrome extension for livejs".

Tilläggsskärmbilder

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

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

                        Say goodbye to Alt-Tab. Live.js makes sure you're always looking at the latest version of the page you're working on, whether you're writing HTML, CSS or Javascript.                    

Grundläggande Information om Tillägg

Namn livejs livejs
ID fnenjmjepccoionjgdgimlnppidghbbg
Officiell webbadress https://chromewebstore.google.com/detail/livejs/fnenjmjepccoionjgdgimlnppidghbbg
Beskrivning chrome extension for livejs
Filstorlek 12.54 KB
Antal Installationer 522
Aktuell Version 1.0.1
Senast Uppdaterad 2013-11-18
Publiceringsdatum 2013-11-17
Betyg 3.83/5 Totalt 6 Betyg
Utvecklare https://wenzhixin.net.cn
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/wenzhixin/livejs
Hjälpsida URL https://github.com/wenzhixin/livejs/issues
Stödda Språk en-US
manifest.json
{
    "name": "livejs",
    "description": "chrome extension for livejs",
    "version": "1.0.1",
    "manifest_version": 2,
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "icons": {
        "128": "logo.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "live.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "logo_disabled.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}