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.”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载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 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
电子邮箱 [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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}