Websee

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

Was ist Websee?

Websee ist eine Chrome-Erweiterung, die von https://websee.io entwickelt wurde, und ihr Hauptmerkmal ist "This extension powers Websee, the most popular daily links and discussions across the web, from anonymous extension users like you!".

Erweiterungsscreenshots

screenshot
screenshot

Websee-Erweiterungs-CRX-Datei herunterladen

Laden Sie Websee-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

                        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!                    

Grundlegende Informationen zur Erweiterung

Name Websee Websee
ID pcpblbaphpngepnmihnboflfjaibgoek
Offizielle URL https://chromewebstore.google.com/detail/websee/pcpblbaphpngepnmihnboflfjaibgoek
Beschreibung This extension powers Websee, the most popular daily links and discussions across the web, from anonymous extension users like you!
Dateigröße 79.49 KB
Installationsanzahl 27
Aktuelle Version 0.6
Letztes Update 2017-03-25
Veröffentlichungsdatum 2017-03-25
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler https://websee.io
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://www.websee.io/
URL der Datenschutzrichtlinien-Seite https://www.newstream.io/privacy_policy
Unterstützte Sprachen 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"
            ]
        }
    ]
}