LinkDownloader
Grouping all website pages links to one place!
Wat is LinkDownloader?
LinkDownloader is een Chrome-extensie ontwikkeld door sharonbaum.mrkt, en de belangrijkste functie is "Grouping all website pages links to one place!".
Extensie Screenshots
Download het CRX-bestand van de extensie LinkDownloader
Download LinkDownloader-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
This extension Grouping all user's website pages links to one place.
Basisinformatie over de Extensie
Naam | |
ID | bfllnidboadchhjlofjkanmgdmefljfk |
Officiële URL | https://chrome.google.com/webstore/detail/linkdownloader/bfllnidboadchhjlofjkanmgdmefljfk |
Beschrijving | Grouping all website pages links to one place! |
Bestandsgrootte | 13.83 KB |
Aantal Installaties | 4,220 |
Huidige Versie | 1 |
Laatst Bijgewerkt | 2022-12-07 |
Publicatiedatum | 2022-12-07 |
Beoordeling | 1.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | sharonbaum.mrkt |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://home.aethemselveb.info/ |
Help Pagina-URL | https://home.aethemselveb.info/contact.html |
Ondersteunde Talen | 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": [ "*:\/\/*\/*" ] } |