Cosmos Extension
Cosmos is a home to collect and curate anything you find on the internet.
Was ist Cosmos Extension?
Cosmos Extension ist eine Chrome-Erweiterung, die von https://cosmos.so entwickelt wurde, und ihr Hauptmerkmal ist "Cosmos is a home to collect and curate anything you find on the internet.".
Erweiterungsscreenshots
Cosmos Extension-Erweiterungs-CRX-Datei herunterladen
Laden Sie Cosmos Extension-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Cosmos Extension |
ID | mgjneceglphcpbbfbhjplkpgfapebmdg |
Offizielle URL | https://chromewebstore.google.com/detail/cosmos-extension/mgjneceglphcpbbfbhjplkpgfapebmdg |
Beschreibung | Cosmos is a home to collect and curate anything you find on the internet. |
Dateigröße | 2.47 MB |
Installationsanzahl | 7,000 |
Aktuelle Version | 4.8.1 |
Letztes Update | 2024-03-01 |
Veröffentlichungsdatum | 2022-07-31 |
Bewertung | 5.00/5 Insgesamt 10 Bewertungen |
Entwickler | https://cosmos.so |
[email protected] | |
Zahlungsart | free |
URL der Datenschutzrichtlinien-Seite | https://www.cosmos.so/privacy-policy |
Unterstützte Sprachen | 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": [ "*:\/\/*\/*" ] } ] } |