Linkification Chrome

Replaces text urls with links that can be clicked on. This extension is inspired by the Firefox Extension with the same name.

Vad är Linkification Chrome?

Linkification Chrome är en Chrome-tillägg utvecklad av https://www.resolutedreamer.com, och dess huvudfunktion är "Replaces text urls with links that can be clicked on. This extension is inspired by the Firefox Extension with the same name.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Linkification Chrome-förlängningens CRX-fil

Ladda ner Linkification Chrome-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

                                            

Grundläggande Information om Tillägg

Namn Linkification Chrome Linkification Chrome
ID haaamfoknimneabkapikpoccmfekkidj
Officiell webbadress https://chromewebstore.google.com/detail/linkification-chrome/haaamfoknimneabkapikpoccmfekkidj
Beskrivning Replaces text urls with links that can be clicked on. This extension is inspired by the Firefox Extension with the same name.
Filstorlek 139 KB
Antal Installationer 776
Aktuell Version 1.1.1
Senast Uppdaterad 2016-08-25
Publiceringsdatum 2016-08-24
Betyg 2.53/5 Totalt 15 Betyg
Utvecklare https://www.resolutedreamer.com
E-post [email protected]
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Linkification Chrome",
    "description": "Replaces text urls with links that can be clicked on. This extension is inspired by the Firefox Extension with the same name.",
    "version": "1.1.1",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "jquery-3.1.0.min.js",
                "linkify.min.js",
                "linkify-jquery.min.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}