include.ai Sidebar

Superpowers for the web.

Was ist include.ai Sidebar?

include.ai Sidebar ist eine Chrome-Erweiterung, die von https://include.ai entwickelt wurde, und ihr Hauptmerkmal ist "Superpowers for the web.".

Erweiterungsscreenshots

screenshot

include.ai Sidebar-Erweiterungs-CRX-Datei herunterladen

Laden Sie include.ai Sidebar-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

                        We are currently in closed beta - access by invite only.

Superpowers for the web.

Automate the repetitive, mundane, and complex. Never again spend mindless hours copying and pasting data into forms, or visiting multiple web pages just to extract competitors' information. Your time is more valuable than that. 

Superpowers you will gain:
- Scrape data from any website
- Store and clean data in seconds
- Use Snippets and never retype text
- Enrich LinkedIn profiles with personal information
- Send personalized mail merges directly from Gmail
- Automate anything on the web
- Manage and use bookmarks instantly

By using this extension, you agree to the include.ai Terms & Conditions available at https://include.ai/terms

Disclaimer:
This extension uses Google Analytics to collect extension usage statistics to help improve user experience. If you want to opt-out of Google Analytics tracking, please visit http://tools.google.com/dlpage/gaoptout or you can set up a filter in Adblock Plus or similar ad blocker tools like AdBlock, uBlock or Adblock Pro.                    

Grundlegende Informationen zur Erweiterung

Name include.ai Sidebar include.ai Sidebar
ID lbdhaihbicbfdpklckolabhkhiiajjdd
Offizielle URL https://chromewebstore.google.com/detail/includeai-sidebar/lbdhaihbicbfdpklckolabhkhiiajjdd
Beschreibung Superpowers for the web.
Dateigröße 589 KB
Installationsanzahl 348
Aktuelle Version 0.1.0.8
Letztes Update 2021-01-10
Veröffentlichungsdatum 2021-01-10
Entwickler https://include.ai
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://include.ai
Hilfeseite URL https://www.include.ai/privacy
URL der Datenschutzrichtlinien-Seite https://www.include.ai/privacy
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "include.ai Sidebar",
    "short_name": "i.a Sidebar",
    "description": "Superpowers for the web.",
    "version": "0.1.0.8",
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "tabs",
        "activeTab",
        "debugger",
        "cookies",
        ""
    ],
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "omnibox": {
        "keyword": "ia"
    },
    "externally_connectable": {
        "matches": [
            "https:\/\/localhost\/*",
            "https:\/\/ally.include.ai\/*",
            "http:\/\/localhost\/*",
            "https:\/\/hq.include.ai\/*",
            "https:\/\/allysidebar.include.ai\/*",
            "https:\/\/sidebar.include.ai\/*"
        ]
    },
    "browser_action": {
        "default_icon": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "web_accessible_resources": [
        "allyParent.css"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "exclude_matches": [
                "*:\/\/*\/*.pdf*"
            ],
            "js": [
                "content.js",
                "ally.js",
                "allysidebar.js"
            ],
            "css": [
                "allyParent.css",
                "allySidebarParent.css",
                "sharedStyles.css",
                "cleanslate.css"
            ],
            "run_at": "document_end"
        }
    ],
    "commands": {
        "toggle-ally-launcher-k": {
            "suggested_key": {
                "default": "Ctrl+Shift+K",
                "windows": "Ctrl+Shift+K",
                "mac": "Ctrl+Shift+K"
            },
            "description": "Toggle Sidebar With K"
        },
        "toggle-ally-launcher-shift": {
            "suggested_key": {
                "default": "Ctrl+Shift+Space",
                "windows": "Ctrl+Shift+Space",
                "mac": "Ctrl+Shift+Space"
            },
            "description": "Toggle Sidebar With Space"
        }
    }
}