Index

Organize Everything.

Was ist Index?

Index ist eine Chrome-Erweiterung, die von http://indexapp.com entwickelt wurde, und ihr Hauptmerkmal ist "Organize Everything.".

Erweiterungsscreenshots

screenshot

Index-Erweiterungs-CRX-Datei herunterladen

Laden Sie Index-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

                        Use the Index Chrome extension to quickly #index interesting ideas you find in the wild. 

The extension lets you quickly #index sites and pictures so you can build your ideas and make projects happen. Whether learning something new, or keeping track of the daily grind, Index keeps you organized so you can focus on what matters.

For super quick Indexing, hit CMD-SHIFT-i                    

Grundlegende Informationen zur Erweiterung

Name Index Index
ID ghkpddjaenkipmahjnkhljeipabemdfc
Offizielle URL https://chrome.google.com/webstore/detail/index/ghkpddjaenkipmahjnkhljeipabemdfc
Beschreibung Organize Everything.
Dateigröße 30.3 KB
Installationsanzahl 722
Aktuelle Version 0.9
Letztes Update 2017-11-26
Veröffentlichungsdatum 2017-11-26
Bewertung 4.00/5 Insgesamt 9 Bewertungen
Entwickler http://indexapp.com
Zahlungsart free
Erweiterungswebsite https://indexapp.com
Hilfeseite URL https://indexapp.com
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Index",
    "version": "0.9",
    "manifest_version": 2,
    "description": "Organize Everything.",
    "icons": {
        "16": "icons\/chevron-icon-16.png",
        "32": "icons\/chevron-icon-32.png",
        "48": "icons\/chevron-icon-48.png",
        "96": "icons\/chevron-icon-96.png",
        "128": "icons\/chevron-icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "permissions": [
        "tabs",
        "storage",
        "http:\/\/*\/",
        "https:\/\/*\/",
        "cookies"
    ],
    "options_ui": {
        "page": "options.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "browser_action": {
        "default_icon": {
            "16": "icons\/chevron-icon-16.png",
            "32": "icons\/chevron-icon-32.png",
            "48": "icons\/chevron-icon-48.png",
            "96": "icons\/chevron-icon-96.png",
            "128": "icons\/chevron-icon-128.png"
        },
        "default_title": "Index this page",
        "default_popup": "popup.html"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+I"
            },
            "description": "Opens the Index save extension."
        }
    }
}