Anchor Index

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

Τι είναι το Anchor Index;

Το Anchor Index είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Unknown, και η κύρια λειτουργία του είναι "Quickly jump between anchors, no matter where you are in any page".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Anchor Index

Λήψη αρχείων επέκτασης Anchor Index σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Anchor Index Anchor Index
ID mdbmnjiiiclnakihghclejaalikdepgl
Επίσημο URL https://chromewebstore.google.com/detail/anchor-index/mdbmnjiiiclnakihghclejaalikdepgl
Περιγραφή Quickly jump between anchors, no matter where you are in any page
Μέγεθος Αρχείου 126 KB
Αριθμός Εγκαταστάσεων 31
Τρέχουσα Έκδοση 1.0.0
Τελευταία Ενημέρωση 2017-10-01
Ημερομηνία Δημοσίευσης 2017-10-01
Προγραμματιστής Unknown
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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"
}