Instension

Chrome browser extension, that allows to download or open in a separate tab a video/photo post from the Instagram website.

Vad är Instension?

Instension är en Chrome-tillägg utvecklad av Unknown, och dess huvudfunktion är "Chrome browser extension, that allows to download or open in a separate tab a video/photo post from the Instagram website.".

Tilläggsskärmbilder

screenshot

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

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

                        Extension will add two new items in a context menu, "Open in new tab" and "Download". They will work, if context menu is opened on a fullsize post from the official Instagram website.                    

Grundläggande Information om Tillägg

Namn Instension Instension
ID ghhgaaedjagldepccfmopmnkkkpjkeon
Officiell webbadress https://chromewebstore.google.com/detail/instension/ghhgaaedjagldepccfmopmnkkkpjkeon
Beskrivning Chrome browser extension, that allows to download or open in a separate tab a video/photo post from the Instagram website.
Filstorlek 16.2 KB
Antal Installationer 19
Aktuell Version 1.1.0
Senast Uppdaterad 2020-01-02
Publiceringsdatum 2020-01-02
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare Unknown
Betalningssätt free
Tilläggswebbplats https://github.com/KrusnikViers/Instension
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Instension",
    "version": "1.1.0",
    "description": "Chrome browser extension, that allows to download or open in a separate tab a video\/photo post from the Instagram website.",
    "icons": {
        "16": "icons\/instension_16.png",
        "32": "icons\/instension_32.png",
        "64": "icons\/instension_64.png",
        "128": "icons\/instension_128.png"
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.instagram.com\/*"
            ],
            "run_at": "document_start",
            "js": [
                "scripts\/element_finder.js",
                "scripts\/content.js"
            ]
        }
    ],
    "permissions": [
        "contextMenus",
        "downloads"
    ]
}