LinkDownloader

Grouping all website pages links to one place!

What is LinkDownloader?

LinkDownloader is a Chrome extension developed by sharonbaum.mrkt, and its main feature is "Grouping all website pages links to one place!".

Extension Screenshots

screenshot

Download LinkDownloader Extension CRX File

Download LinkDownloader extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        This extension Grouping all user's website pages links to one place.                    

Extension Basic Information

Name LinkDownloader LinkDownloader
ID bfllnidboadchhjlofjkanmgdmefljfk
Official URL https://chrome.google.com/webstore/detail/linkdownloader/bfllnidboadchhjlofjkanmgdmefljfk
Description Grouping all website pages links to one place!
File Size 13.83 KB
Installation Count 4,220
Current Version 1
Last Updated 2022-12-07
Publish Date 2022-12-07
Rating 1.00/5 Total 1 Ratings
Developer sharonbaum.mrkt
Email [email protected]
Payment Type free
Extension Website https://home.aethemselveb.info/
Help Page URL https://home.aethemselveb.info/contact.html
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "action": {
        "default_icon": "logo.png",
        "default_title": "LinkDownloader",
        "default_popup": "popup.html"
    },
    "description": "Grouping all website pages links to one place!",
    "icons": {
        "128": "logo.png"
    },
    "manifest_version": 3,
    "name": "LinkDownloader",
    "version": "1",
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icons\/*.svg"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ]
}