Cosmos Extension
Cosmos is a home to collect and curate anything you find on the internet.
O que é Cosmos Extension?
Cosmos Extension é uma extensão do Chrome desenvolvida por https://cosmos.so, e sua principal característica é "Cosmos is a home to collect and curate anything you find on the internet.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Cosmos Extension
Baixe arquivos de extensão Cosmos Extension no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Cosmos Extension |
ID | mgjneceglphcpbbfbhjplkpgfapebmdg |
URL Oficial | https://chromewebstore.google.com/detail/cosmos-extension/mgjneceglphcpbbfbhjplkpgfapebmdg |
Descrição | Cosmos is a home to collect and curate anything you find on the internet. |
Tamanho do Arquivo | 2.47 MB |
Contagem de Instalações | 7,000 |
Versão Atual | 4.8.1 |
Última Atualização | 2024-03-01 |
Data de Publicação | 2022-07-31 |
Classificação | 5.00/5 Total de 10 Avaliações |
Desenvolvedor | https://cosmos.so |
[email protected] | |
Tipo de Pagamento | free |
URL da Página de Política de Privacidade | https://www.cosmos.so/privacy-policy |
Idiomas Suportados | 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": [ "*:\/\/*\/*" ] } ] } |