Websee

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

What is Websee?

Websee is a Chrome extension developed by https://websee.io, and its main feature is "This extension powers Websee, the most popular daily links and discussions across the web, from anonymous extension users like you!".

Extension Screenshots

screenshot
screenshot

Download Websee Extension CRX File

Download Websee extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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!                    

Extension Basic Information

Name Websee Websee
ID pcpblbaphpngepnmihnboflfjaibgoek
Official URL https://chromewebstore.google.com/detail/websee/pcpblbaphpngepnmihnboflfjaibgoek
Description This extension powers Websee, the most popular daily links and discussions across the web, from anonymous extension users like you!
File Size 79.49 KB
Installation Count 27
Current Version 0.6
Last Updated 2017-03-25
Publish Date 2017-03-25
Rating 5.00/5 Total 2 Ratings
Developer https://websee.io
Email [email protected]
Payment Type free
Extension Website https://www.websee.io/
Privacy Policy Page URL https://www.newstream.io/privacy_policy
Supported Languages 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"
            ]
        }
    ]
}