Amazon Product Link Shortener

Creates a short and clean link to the current amazon.com product page, for easy sharing.

Vad är Amazon Product Link Shortener?

Amazon Product Link Shortener är en Chrome-tillägg utvecklad av bp2008software, och dess huvudfunktion är "Creates a short and clean link to the current amazon.com product page, for easy sharing.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Amazon Product Link Shortener-förlängningens CRX-fil

Ladda ner Amazon Product Link Shortener-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 extension makes it easy to share amazon.com product links with a short and clean URL. When viewing a product on amazon.com, just click the button in the browser's toolbar to automatically copy a shortened link to your clipboard.

This extension was designed for use with amazon.com in the USA, and has not been tested with other amazon regional websites.  To request support for a different amazon region, or if the extension is unable to generate a usable link, please submit an issue on github: https://github.com/bp2008/Amazon-Product-Link-Shortener                    

Grundläggande Information om Tillägg

Namn Amazon Product Link Shortener Amazon Product Link Shortener
ID kjjlkpmgccmimghapoichdfffocambjp
Officiell webbadress https://chromewebstore.google.com/detail/amazon-product-link-short/kjjlkpmgccmimghapoichdfffocambjp
Beskrivning Creates a short and clean link to the current amazon.com product page, for easy sharing.
Filstorlek 18.52 KB
Antal Installationer 276
Aktuell Version 1.4
Senast Uppdaterad 2023-06-05
Publiceringsdatum 2018-12-10
Betyg 3.00/5 Totalt 1 Betyg
Utvecklare bp2008software
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/bp2008/Amazon-Product-Link-Shortener/
Hjälpsida URL https://github.com/bp2008/Amazon-Product-Link-Shortener/
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Amazon Product Link Shortener",
    "version": "1.4",
    "description": "Creates a short and clean link to the current amazon.com product page, for easy sharing.",
    "permissions": [
        "declarativeContent",
        "tabs",
        "storage",
        "clipboardWrite"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "32": "icon32.png",
            "48": "icon48.png",
            "128": "icon128.png"
        }
    },
    "manifest_version": 2
}