ADyff
Improve readability of Apple Developer Documentation site.
ADyff क्या है?
ADyff http://www.emotionale.jp द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Improve readability of Apple Developer Documentation site."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में ADyff एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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. एक्सटेंशन की मूल जानकारी
| नाम | |
| ID | ggpipdpikdeggghflhmdjbhoaflinhdn |
| आधिकारिक URL | https://chrome.google.com/webstore/detail/adyff/ggpipdpikdeggghflhmdjbhoaflinhdn |
| विवरण | Improve readability of Apple Developer Documentation site. |
| फ़ाइल का आकार | 51.44 KB |
| स्थापना संख्या | 24 |
| वर्तमान संस्करण | 1.0.1 |
| अंतिम अपडेट | 2017-06-22 |
| प्रकाशन तिथि | 2017-06-22 |
| डेवलपर | http://www.emotionale.jp |
| ईमेल | [email protected] |
| भुगतान के प्रकार | free |
| गोपनीयता नीति पृष्ठ URL | http://www.emotionale.jp/adyff_privacypolicy |
| समर्थित भाषाएँ | 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"
]
} | |