Websee
This extension powers Websee, the most popular daily links and discussions across the web, from anonymous extension users like you!
Hvad er Websee?
Websee er en Chrome-udvidelse udviklet af https://websee.io, og dens hovedfunktion er "This extension powers Websee, the most popular daily links and discussions across the web, from anonymous extension users like you!".
Udvidelsesskærmbilleder
Download Websee-udvidelses-CRX-fil
Download Websee-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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æggende oplysninger om udvidelsen
Navn | Websee |
ID | pcpblbaphpngepnmihnboflfjaibgoek |
Officiel URL | https://chromewebstore.google.com/detail/websee/pcpblbaphpngepnmihnboflfjaibgoek |
Beskrivelse | This extension powers Websee, the most popular daily links and discussions across the web, from anonymous extension users like you! |
Filstørrelse | 79.49 KB |
Antal Installationer | 27 |
Nuværende Version | 0.6 |
Senest Opdateret | 2017-03-25 |
Udgivelsesdato | 2017-03-25 |
Bedømmelse | 5.00/5 Samlet 2 Bedømmelser |
Udvikler | https://websee.io |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://www.websee.io/ |
URL til Fortrolighedspolitik Side | https://www.newstream.io/privacy_policy |
Understøttede Sprog | 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" ] } ] } |