ADyff

Improve readability of Apple Developer Documentation site.

ADyff là gì?

ADyff là một tiện ích mở rộng Chrome được phát triển bởi http://www.emotionale.jp, và tính năng chính của nó là "Improve readability of Apple Developer Documentation site.".

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

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

                        Apple's Developer Documentation site has a feature that can highlights modified/added/deprecated APIs, but sometimes we want simple "API Diffs" list page like provided by Apple in the past...

For such developers, this extension improves readability of the site.

Features:
- Show/Hide unchanged APIs.
- Adding deeper API Diffs to framework page.*

*Loaded API list data will be saved on the local drive.
*You need to reload list data manually when a newer version of the document has been published on the site.

*** NOTICE ***
We haven't check whether this extension works fine on every page of Developer Documentation site. Please use this at your own risk.                    

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

Tên ADyff ADyff
ID ggpipdpikdeggghflhmdjbhoaflinhdn
URL Chính Thức https://chrome.google.com/webstore/detail/adyff/ggpipdpikdeggghflhmdjbhoaflinhdn
Mô tả Improve readability of Apple Developer Documentation site.
Kích Thước Tệp 51.44 KB
Số Lần Cài Đặt 24
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2017-06-22
Ngày Phát Hành 2017-06-22
Nhà Phát Triển http://www.emotionale.jp
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật http://www.emotionale.jp/adyff_privacypolicy
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ADyff",
    "version": "1.0.1",
    "description": "Improve readability of Apple Developer Documentation site.",
    "permissions": [
        "tabs",
        "https:\/\/developer.apple.com\/documentation*",
        "storage",
        "unlimitedStorage"
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "js\/lib\/jquery-3.2.1.min.js",
            "js\/background.js"
        ]
    },
    "page_action": {
        "default_icon": {
            "16": "icons\/icon16.png",
            "48": "icons\/icon48.png",
            "128": "icons\/icon128.png"
        },
        "default_title": "ADyff",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/developer.apple.com\/documentation*"
            ],
            "css": [
                "css\/diffs.css"
            ],
            "js": [
                "js\/lib\/jquery-3.2.1.min.js",
                "js\/emt-apidiffs-lib.js",
                "js\/diffs.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "css\/diffs.css"
    ]
}