ADyff
Improve readability of Apple Developer Documentation site.
ADyff란 무엇입니까?
ADyff은(는) http://www.emotionale.jp에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Improve readability of Apple Developer Documentation site."입니다.
확장 프로그램 스크린샷
ADyff 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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" ] } |