Websee

This extension powers Websee, the most popular daily links and discussions across the web, from anonymous extension users like you!

Websee là gì?

Websee là một tiện ích mở rộng Chrome được phát triển bởi https://websee.io, và tính năng chính của nó là "This extension powers Websee, the most popular daily links and discussions across the web, from anonymous extension users like you!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Websee

Tải xuống các tệp mở rộng Websee dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Join the collective mind of the web! Create private groups to automatically share the web content you and friends discover. More features on the way.

https://www.websee.io/

The extension codebase is completely open source and freely licensed under the GNU General Public License. The code repository can be viewed at https://github.com/lasernite/websee_ext. We welcome your contributions!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Websee Websee
ID pcpblbaphpngepnmihnboflfjaibgoek
URL Chính Thức https://chromewebstore.google.com/detail/websee/pcpblbaphpngepnmihnboflfjaibgoek
Mô tả This extension powers Websee, the most popular daily links and discussions across the web, from anonymous extension users like you!
Kích Thước Tệp 79.49 KB
Số Lần Cài Đặt 27
Phiên Bản Hiện Tại 0.6
Cập Nhật Lần Cuối 2017-03-25
Ngày Phát Hành 2017-03-25
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển https://websee.io
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.websee.io/
URL Trang Chính Sách Bảo Mật https://www.newstream.io/privacy_policy
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Websee",
    "short_name": "Websee",
    "description": "This extension powers Websee, the most popular daily links and discussions across the web, from anonymous extension users like you!",
    "version": "0.6",
    "permissions": [
        "activeTab",
        "tabs",
        "webNavigation",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Websee - The Sea of the Web",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.websee.io\/*",
                "https:\/\/www.websee.io\/*"
            ],
            "js": [
                "websee.js"
            ]
        }
    ]
}