Anchor Index

Quickly jump between anchors, no matter where you are in any page

Cos'è Anchor Index?

Anchor Index è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "Quickly jump between anchors, no matter where you are in any page".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Anchor Index

Scarica i file di estensione Anchor Index in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Tired of constantly scrolling up and down in big pages? 

No more! Away you pesky scroll button;

Using Anchor Index you can quickly jump between anchors, no matter where you are in any page.

When clicked, this item will find all the HTML head tags in your active tab, and create a list with relevant anchors. And, you may use this list, to quickly jump between the different sections of your favorite pages. 

Open source @ https://github.com/rdok/anchor-index                    

Informazioni di Base sull'Estensione

Nome Anchor Index Anchor Index
ID mdbmnjiiiclnakihghclejaalikdepgl
URL Ufficiale https://chromewebstore.google.com/detail/anchor-index/mdbmnjiiiclnakihghclejaalikdepgl
Descrizione Quickly jump between anchors, no matter where you are in any page
Dimensione del File 126 KB
Conteggio Installazioni 31
Versione Corrente 1.0.0
Ultimo Aggiornamento 2017-10-01
Data di Pubblicazione 2017-10-01
Sviluppatore Unknown
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Anchor Index",
    "version": "1.0.0",
    "description": "Quickly jump between anchors, no matter where you are in any page",
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "browser_action": {
        "default_title": "Anchor Index",
        "default_icon": {
            "19": "img\/icon48.png",
            "38": "img\/icon48.png"
        },
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "web_accessible_resources": [
        "img\/icon128.png"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "offline_enabled": true,
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "author": "Rizart Dokollari"
}