Anchor Index

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

Anchor Index là gì?

Anchor Index là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Quickly jump between anchors, no matter where you are in any page".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Anchor Index

Tải xuống các tệp mở rộng Anchor Index dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Anchor Index Anchor Index
ID mdbmnjiiiclnakihghclejaalikdepgl
URL Chính Thức https://chromewebstore.google.com/detail/anchor-index/mdbmnjiiiclnakihghclejaalikdepgl
Mô tả Quickly jump between anchors, no matter where you are in any page
Kích Thước Tệp 126 KB
Số Lần Cài Đặt 31
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2017-10-01
Ngày Phát Hành 2017-10-01
Nhà Phát Triển Unknown
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
}