Supersurfer - Copilot for browsing

Supersurfer is a copilot for the web. It surfs the links from the current page to give you a preview of how interesting they are.

ما هو Supersurfer - Copilot for browsing؟

Supersurfer - Copilot for browsing هو إضافة Chrome تم تطويرها بواسطة https://magicflow.com، والميزة الرئيسية لها هي "Supersurfer is a copilot for the web. It surfs the links from the current page to give you a preview of how interesting they are.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Supersurfer - Copilot for browsing

قم بتنزيل ملفات الامتداد Supersurfer - Copilot for browsing بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        # MAIN FEATURES
- Preview links with beautiful hovercards
- Auto-categorisation and powerful search for saved tabs
- Recommendation score for websites.
- Resurfacing relevant saved tabs
- Ask an AI questions with a webpage as context

# HOW IT WORKS
You hover over the score we assign to each link, and can see a hovercard preview of the website it links to.

Supersurfer scores webpages based on how interesting we think you'll find them. It figures out if a page fits one of your interests, and tags it automatically to be easily searchable later.

# SHORTCUTS
- Save a tab: Option-S, and it'll be saved with their scores and tags and be full-text searchable. 
- Saves all tabs in a window: Option-A 
- Resurface relevant links: Option-X
- Toggle auto-darkmode: Option-D - any time you visit this website with your computer in dark-mode, it'll be inverted to save your eyeballs.

# LONG DESCRIPTION
Supersurfer helps you manage your tabs and links you want to read, by automatically tagging and scoring them based on your Facebook and Twitter interests and history. It uses your personal data as a tool to make your life better, by helping to automagically make sense of the endless seas of information on the internet.

Mike, cofounder and CEO of Ethi, has tried many tab/link management tools, and this is the first one that works (I have just 1 window with 10 tabs open while writing this), because of the power of the auto-tagging and scoring system. I know that links won't get lost, because it's so easy to resurface them. I hope it works as well for you as it does for me!                    

معلومات أساسية عن التمديد

الاسم Supersurfer - Copilot for browsing Supersurfer - Copilot for browsing
ID dfahckbpiamhkicnbhlmieecjeplpdgc
عنوان URL الرسمي https://chromewebstore.google.com/detail/supersurfer-copilot-for-b/dfahckbpiamhkicnbhlmieecjeplpdgc
الوصف Supersurfer is a copilot for the web. It surfs the links from the current page to give you a preview of how interesting they are.
حجم الملف 2.01 MB
عدد التثبيتات 32
النسخة الحالية 0.0.1.4
آخر تحديث 2023-01-08
تاريخ النشر 2021-01-21
تقييم 4.50/5 مجموع تقييمات 2
المطور https://magicflow.com
البريد الإلكتروني [email protected]
نوع الدفع in_app
موقع الإضافة https://magicflow.com/supersurfer
عنوان صفحة سياسة الخصوصية https://github.com/ethi-technologies/policies/blob/master/ethi-privacy-statement.md
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Supersurfer is a copilot for the web. It surfs the links from the current page to give you a preview of how interesting they are.",
    "version": "0.0.1.4",
    "name": "Supersurfer - Copilot for browsing",
    "permissions": [
        "history",
        "tabs",
        "storage",
        "webNavigation",
        "scripting"
    ],
    "chrome_url_overrides": {
        "newtab": "newtab.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "contentScript.bundle.js"
            ]
        }
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "options_page": "options.html",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon-128.png"
    },
    "commands": {
        "save-tab": {
            "suggested_key": {
                "default": "Alt+S",
                "mac": "Alt+S"
            },
            "description": "Save a tab"
        },
        "save-all-tabs": {
            "suggested_key": {
                "default": "Alt+A",
                "mac": "Alt+A"
            },
            "description": "Save all tabs"
        },
        "resurface-tabs": {
            "suggested_key": {
                "default": "Alt+X",
                "mac": "Alt+X"
            },
            "description": "Resurface most relevant tabs"
        },
        "darkmode": {
            "suggested_key": {
                "default": "Alt+D",
                "mac": "Alt+D"
            },
            "description": "Invert color of page"
        }
    },
    "icons": {
        "16": "icon-16.png",
        "34": "favicon.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "manifest_version": 3,
    "web_accessible_resources": [
        {
            "resources": [
                "options.html"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self';child-src *;frame-src 'self' *"
    }
}