Anchor headings

Adds anchors to headings

Was ist Anchor headings?

Anchor headings ist eine Chrome-Erweiterung, die von Michael Radionov entwickelt wurde, und ihr Hauptmerkmal ist "Adds anchors to headings".

Erweiterungsscreenshots

screenshot

Anchor headings-Erweiterungs-CRX-Datei herunterladen

Laden Sie Anchor headings-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

                        In long articles and tutorials each paragraph usually has it's own heading. Sometimes one wants copy a link to a particular paragraph, but not every website has such a link. This extension tries to solve the problem by adding an anchor link to each heading on a page in a form of "hash" sign `#` - you can either click on it and then copy complete URL from browser's address bar or use context menu to copy a link directly.                    

Grundlegende Informationen zur Erweiterung

Name Anchor headings Anchor headings
ID lggjnoadjgfilclcmbakfkkfjjkhdpfo
Offizielle URL https://chromewebstore.google.com/detail/anchor-headings/lggjnoadjgfilclcmbakfkkfjjkhdpfo
Beschreibung Adds anchors to headings
Dateigröße 5.67 KB
Installationsanzahl 22
Aktuelle Version 0.1.0
Letztes Update 2016-07-21
Veröffentlichungsdatum 2016-07-21
Bewertung 3.00/5 Insgesamt 2 Bewertungen
Entwickler Michael Radionov
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Anchor headings",
    "description": "Adds anchors to headings",
    "version": "0.1.0",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ],
            "css": [
                "css\/content.css"
            ]
        }
    ]
}