LinkDownloader
Grouping all website pages links to one place!
什麼是LinkDownloader?
LinkDownloader是由sharonbaum.mrkt開發的Chrome擴展程式,該擴展的主要功能是“Grouping all website pages links to one place!”。
擴展截圖
下載LinkDownloader擴展crx文件
下載LinkDownloader擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This extension Grouping all user's website pages links to one place.
擴展基本資訊
名稱 | |
ID | bfllnidboadchhjlofjkanmgdmefljfk |
官方網址 | https://chrome.google.com/webstore/detail/linkdownloader/bfllnidboadchhjlofjkanmgdmefljfk |
簡介 | Grouping all website pages links to one place! |
檔案大小 | 13.83 KB |
安裝次數 | 4,220 |
目前版本 | 1 |
更新時間 | 2022-12-07 |
上架時間 | 2022-12-07 |
評分 | 1.00/5 共 1 次評分 |
開發者 | sharonbaum.mrkt |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://home.aethemselveb.info/ |
說明頁面URL | https://home.aethemselveb.info/contact.html |
支援的語言 | 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": [ "*:\/\/*\/*" ] } |