Cosmos Extension
Cosmos is a home to collect and curate anything you find on the internet.
Cosmos Extensionとは何ですか?
Cosmos Extensionはhttps://cosmos.soによって開発されたChromeの拡張機能で、その主な機能は「Cosmos is a home to collect and curate anything you find on the internet.」です。
拡張機能のスクリーンショット
Cosmos Extension拡張機能のCRXファイルをダウンロード
Cosmos Extension拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Download our extension to save images, links, videos, articles, and more in your Cosmos. – On Instagram: Hover over the image and click on the Cosmos button. – Images on the web: Right-click the image and save to Cosmos. – Links: Save any website or article with just a single click after pinning the extension. – Text: Highlight any text on the web, right-click and save to Cosmos.
拡張機能の基本情報
名前 | Cosmos Extension |
ID | mgjneceglphcpbbfbhjplkpgfapebmdg |
公式URL | https://chromewebstore.google.com/detail/cosmos-extension/mgjneceglphcpbbfbhjplkpgfapebmdg |
説明 | Cosmos is a home to collect and curate anything you find on the internet. |
ファイルサイズ | 2.47 MB |
インストール数 | 7,000 |
現在のバージョン | 4.8.1 |
最終更新日 | 2024-03-01 |
公開日 | 2022-07-31 |
評価 | 5.00/5 合計 10 レビュー |
開発者 | https://cosmos.so |
Eメール | [email protected] |
支払い方法 | free |
プライバシーポリシーページのURL | https://www.cosmos.so/privacy-policy |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Cosmos Extension", "description": "Cosmos is a home to collect and curate anything you find on the internet.", "homepage_url": "https:\/\/join.cosmos.so", "manifest_version": 3, "version": "4.8.1", "background": { "service_worker": "js\/backgroundLoader.js" }, "action": { "default_title": "Cosmos", "default_icon": { "16": "assets\/img\/icon-16.png", "32": "assets\/img\/icon-32.png", "128": "assets\/img\/icon-128.png", "256": "assets\/img\/icon-256.png" } }, "icons": { "16": "assets\/img\/icon-16.png", "32": "assets\/img\/icon-32.png", "128": "assets\/img\/icon-128.png", "256": "assets\/img\/icon-256.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.cosmos.so\/authorize-extension" ], "css": [], "js": [ "js\/browser-polyfill.js", "js\/safariLogin.js" ], "run_at": "document_start" }, { "matches": [ "https:\/\/*.cosmos.so\/*" ], "css": [], "js": [ "js\/browser-polyfill.js", "js\/safariLogout.js" ], "run_at": "document_start" }, { "matches": [ "https:\/\/*.cosmos.so\/*" ], "css": [], "js": [ "js\/identifier.js" ], "run_at": "document_start" } ], "permissions": [ "activeTab", "contextMenus", "cookies", "storage", "scripting", "alarms" ], "host_permissions": [ "*:\/\/*\/*", "https:\/\/*.cosmos.so\/*" ], "web_accessible_resources": [ { "resources": [ "assets\/*" ], "matches": [ "*:\/\/*\/*" ] } ] } |