ADyff

Improve readability of Apple Developer Documentation site.

Was ist ADyff?

ADyff ist eine Chrome-Erweiterung, die von http://www.emotionale.jp entwickelt wurde, und ihr Hauptmerkmal ist "Improve readability of Apple Developer Documentation site.".

Erweiterungsscreenshots

screenshot

ADyff-Erweiterungs-CRX-Datei herunterladen

Laden Sie ADyff-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name ADyff ADyff
ID ggpipdpikdeggghflhmdjbhoaflinhdn
Offizielle URL https://chrome.google.com/webstore/detail/adyff/ggpipdpikdeggghflhmdjbhoaflinhdn
Beschreibung Improve readability of Apple Developer Documentation site.
Dateigröße 51.44 KB
Installationsanzahl 24
Aktuelle Version 1.0.1
Letztes Update 2017-06-22
Veröffentlichungsdatum 2017-06-22
Entwickler http://www.emotionale.jp
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite http://www.emotionale.jp/adyff_privacypolicy
Unterstützte Sprachen 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"
    ]
}