DocFlip

DocFlip makes it easy to between the Mac and iOS versions of Apple's Developer Library docs.

DocFlip là gì?

DocFlip là một tiện ích mở rộng Chrome được phát triển bởi Nathan Greenstein, và tính năng chính của nó là "DocFlip makes it easy to between the Mac and iOS versions of Apple's Developer Library docs.".

Ả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 DocFlip

Tải xuống các tệp mở rộng DocFlip 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

                        DocFlip is a Chrome extension that makes it easy to switch between the Mac and iOS versions of Apple's Developer Library documentation. It adds a 'flip' link to the header of any supported page. Clicking the link will take you to the corresponding document in the other platform's Developer Library.                    

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

Tên DocFlip DocFlip
ID pafmafifhicbmimdmmljhiaigkcnbkkl
URL Chính Thức https://chrome.google.com/webstore/detail/docflip/pafmafifhicbmimdmmljhiaigkcnbkkl
Mô tả DocFlip makes it easy to between the Mac and iOS versions of Apple's Developer Library docs.
Kích Thước Tệp 12.7 KB
Số Lần Cài Đặt 10
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2012-10-05
Ngày Phát Hành 2012-10-05
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Nathan Greenstein
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/nathangreenstein/DocFlip
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "DocFlip",
    "version": "1.0",
    "manifest_version": 2,
    "description": "DocFlip makes it easy to between the Mac and iOS versions of Apple's Developer Library docs.",
    "homepage_url": "https:\/\/github.com\/nathangreenstein\/DocFlip",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "*:\/\/developer.apple.com\/library\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/developer.apple.com\/library\/*"
            ],
            "js": [
                "docflip.js"
            ],
            "css": [
                "docflip.css"
            ]
        }
    ]
}