Websee

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

Vad är Websee?

Websee är en Chrome-tillägg utvecklad av https://websee.io, och dess huvudfunktion är "This extension powers Websee, the most popular daily links and discussions across the web, from anonymous extension users like you!".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Websee-förlängningens CRX-fil

Ladda ner Websee-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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!                    

Grundläggande Information om Tillägg

Namn Websee Websee
ID pcpblbaphpngepnmihnboflfjaibgoek
Officiell webbadress https://chromewebstore.google.com/detail/websee/pcpblbaphpngepnmihnboflfjaibgoek
Beskrivning This extension powers Websee, the most popular daily links and discussions across the web, from anonymous extension users like you!
Filstorlek 79.49 KB
Antal Installationer 27
Aktuell Version 0.6
Senast Uppdaterad 2017-03-25
Publiceringsdatum 2017-03-25
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare https://websee.io
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://www.websee.io/
URL till Sekretesspolicy Sidan https://www.newstream.io/privacy_policy
Stödda Språk 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"
            ]
        }
    ]
}