ShortLink Decode

This extensions help decode the short link into the original link

Vad är ShortLink Decode?

ShortLink Decode är en Chrome-tillägg utvecklad av https://tienich.xyz, och dess huvudfunktion är "This extensions help decode the short link into the original link".

Tilläggsskärmbilder

screenshot

Ladda ner ShortLink Decode-förlängningens CRX-fil

Ladda ner ShortLink Decode-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

                        This extensions help decode the short link into the original link on web page                    

Grundläggande Information om Tillägg

Namn ShortLink Decode ShortLink Decode
ID clcgakfkgdhbcmpkgmhmoapjdiffgfia
Officiell webbadress https://chromewebstore.google.com/detail/shortlink-decode/clcgakfkgdhbcmpkgmhmoapjdiffgfia
Beskrivning This extensions help decode the short link into the original link
Filstorlek 18.34 KB
Antal Installationer 149
Aktuell Version 1.2
Senast Uppdaterad 2019-05-15
Publiceringsdatum 2019-05-09
Betyg 4.00/5 Totalt 4 Betyg
Utvecklare https://tienich.xyz
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": "ShortLink Decode",
    "description": "This extensions help decode the short link into the original link",
    "version": "1.2",
    "icons": {
        "16": "icon.png",
        "48": "icon.png"
    },
    "permissions": [
        "tabs"
    ],
    "browser_action": {
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}