Websee

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

Co to jest Websee?

Websee to rozszerzenie Chrome opracowane przez https://websee.io, a jego główną funkcją jest „This extension powers Websee, the most popular daily links and discussions across the web, from anonymous extension users like you!”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Websee

Pobierz pliki rozszerzeń Websee w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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!                    

Podstawowe informacje o rozszerzeniu

Nazwa Websee Websee
ID pcpblbaphpngepnmihnboflfjaibgoek
Oficjalny URL https://chromewebstore.google.com/detail/websee/pcpblbaphpngepnmihnboflfjaibgoek
Opis This extension powers Websee, the most popular daily links and discussions across the web, from anonymous extension users like you!
Rozmiar pliku 79.49 KB
Liczba instalacji 27
Aktualna Wersja 0.6
Ostatnia Aktualizacja 2017-03-25
Data Publikacji 2017-03-25
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper https://websee.io
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://www.websee.io/
Adres URL Strony Polityki Prywatności https://www.newstream.io/privacy_policy
Obsługiwane Języki 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"
            ]
        }
    ]
}