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 |
| 公式URL | 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 |
| Eメール | [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": [
"*:\/\/*\/*"
]
} | |