├── .asf.yaml ├── .eslintrc.yml ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── BUG_REPORT.md │ ├── FEATURE_REQUEST.md │ └── SUPPORT_QUESTION.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── android.yml │ ├── chrome.yml │ ├── ios.yml │ └── lint.yml ├── .gitignore ├── .npmignore ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── README.md ├── RELEASENOTES.md ├── package.json ├── plugin.xml ├── src ├── android │ ├── InAppBrowser.java │ ├── InAppBrowserDialog.java │ ├── InAppChromeClient.java │ └── res │ │ └── drawable │ │ ├── ic_action_close.xml │ │ ├── ic_action_more.xml │ │ └── ic_action_previous_item.xml ├── browser │ └── InAppBrowserProxy.js └── ios │ ├── CDVInAppBrowserNavigationController.h │ ├── CDVInAppBrowserNavigationController.m │ ├── CDVInAppBrowserOptions.h │ ├── CDVInAppBrowserOptions.m │ ├── CDVWKInAppBrowser.h │ ├── CDVWKInAppBrowser.m │ ├── CDVWKInAppBrowserUIDelegate.h │ └── CDVWKInAppBrowserUIDelegate.m ├── tests ├── .eslintrc.yml ├── package.json ├── plugin.xml ├── resources │ ├── inject.css │ ├── inject.html │ ├── inject.js │ ├── local.html │ ├── local.pdf │ └── video.html └── tests.js ├── types └── index.d.ts └── www └── inappbrowser.js /.asf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytonwalletorg/cordova-plugin-inappbrowser/HEAD/.asf.yaml -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytonwalletorg/cordova-plugin-inappbrowser/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytonwalletorg/cordova-plugin-inappbrowser/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytonwalletorg/cordova-plugin-inappbrowser/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/BUG_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytonwalletorg/cordova-plugin-inappbrowser/HEAD/.github/ISSUE_TEMPLATE/BUG_REPORT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytonwalletorg/cordova-plugin-inappbrowser/HEAD/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/SUPPORT_QUESTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytonwalletorg/cordova-plugin-inappbrowser/HEAD/.github/ISSUE_TEMPLATE/SUPPORT_QUESTION.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytonwalletorg/cordova-plugin-inappbrowser/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytonwalletorg/cordova-plugin-inappbrowser/HEAD/.github/workflows/android.yml -------------------------------------------------------------------------------- /.github/workflows/chrome.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytonwalletorg/cordova-plugin-inappbrowser/HEAD/.github/workflows/chrome.yml -------------------------------------------------------------------------------- /.github/workflows/ios.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytonwalletorg/cordova-plugin-inappbrowser/HEAD/.github/workflows/ios.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytonwalletorg/cordova-plugin-inappbrowser/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytonwalletorg/cordova-plugin-inappbrowser/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .* 2 | tests 3 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytonwalletorg/cordova-plugin-inappbrowser/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytonwalletorg/cordova-plugin-inappbrowser/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytonwalletorg/cordova-plugin-inappbrowser/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytonwalletorg/cordova-plugin-inappbrowser/HEAD/README.md -------------------------------------------------------------------------------- /RELEASENOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytonwalletorg/cordova-plugin-inappbrowser/HEAD/RELEASENOTES.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytonwalletorg/cordova-plugin-inappbrowser/HEAD/package.json -------------------------------------------------------------------------------- /plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytonwalletorg/cordova-plugin-inappbrowser/HEAD/plugin.xml -------------------------------------------------------------------------------- /src/android/InAppBrowser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytonwalletorg/cordova-plugin-inappbrowser/HEAD/src/android/InAppBrowser.java -------------------------------------------------------------------------------- /src/android/InAppBrowserDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytonwalletorg/cordova-plugin-inappbrowser/HEAD/src/android/InAppBrowserDialog.java -------------------------------------------------------------------------------- /src/android/InAppChromeClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytonwalletorg/cordova-plugin-inappbrowser/HEAD/src/android/InAppChromeClient.java -------------------------------------------------------------------------------- /src/android/res/drawable/ic_action_close.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytonwalletorg/cordova-plugin-inappbrowser/HEAD/src/android/res/drawable/ic_action_close.xml -------------------------------------------------------------------------------- /src/android/res/drawable/ic_action_more.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytonwalletorg/cordova-plugin-inappbrowser/HEAD/src/android/res/drawable/ic_action_more.xml -------------------------------------------------------------------------------- /src/android/res/drawable/ic_action_previous_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytonwalletorg/cordova-plugin-inappbrowser/HEAD/src/android/res/drawable/ic_action_previous_item.xml -------------------------------------------------------------------------------- /src/browser/InAppBrowserProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytonwalletorg/cordova-plugin-inappbrowser/HEAD/src/browser/InAppBrowserProxy.js -------------------------------------------------------------------------------- /src/ios/CDVInAppBrowserNavigationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytonwalletorg/cordova-plugin-inappbrowser/HEAD/src/ios/CDVInAppBrowserNavigationController.h -------------------------------------------------------------------------------- /src/ios/CDVInAppBrowserNavigationController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytonwalletorg/cordova-plugin-inappbrowser/HEAD/src/ios/CDVInAppBrowserNavigationController.m -------------------------------------------------------------------------------- /src/ios/CDVInAppBrowserOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytonwalletorg/cordova-plugin-inappbrowser/HEAD/src/ios/CDVInAppBrowserOptions.h -------------------------------------------------------------------------------- /src/ios/CDVInAppBrowserOptions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytonwalletorg/cordova-plugin-inappbrowser/HEAD/src/ios/CDVInAppBrowserOptions.m -------------------------------------------------------------------------------- /src/ios/CDVWKInAppBrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytonwalletorg/cordova-plugin-inappbrowser/HEAD/src/ios/CDVWKInAppBrowser.h -------------------------------------------------------------------------------- /src/ios/CDVWKInAppBrowser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytonwalletorg/cordova-plugin-inappbrowser/HEAD/src/ios/CDVWKInAppBrowser.m -------------------------------------------------------------------------------- /src/ios/CDVWKInAppBrowserUIDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytonwalletorg/cordova-plugin-inappbrowser/HEAD/src/ios/CDVWKInAppBrowserUIDelegate.h -------------------------------------------------------------------------------- /src/ios/CDVWKInAppBrowserUIDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytonwalletorg/cordova-plugin-inappbrowser/HEAD/src/ios/CDVWKInAppBrowserUIDelegate.m -------------------------------------------------------------------------------- /tests/.eslintrc.yml: -------------------------------------------------------------------------------- 1 | env: 2 | jasmine: true -------------------------------------------------------------------------------- /tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytonwalletorg/cordova-plugin-inappbrowser/HEAD/tests/package.json -------------------------------------------------------------------------------- /tests/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytonwalletorg/cordova-plugin-inappbrowser/HEAD/tests/plugin.xml -------------------------------------------------------------------------------- /tests/resources/inject.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytonwalletorg/cordova-plugin-inappbrowser/HEAD/tests/resources/inject.css -------------------------------------------------------------------------------- /tests/resources/inject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytonwalletorg/cordova-plugin-inappbrowser/HEAD/tests/resources/inject.html -------------------------------------------------------------------------------- /tests/resources/inject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytonwalletorg/cordova-plugin-inappbrowser/HEAD/tests/resources/inject.js -------------------------------------------------------------------------------- /tests/resources/local.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytonwalletorg/cordova-plugin-inappbrowser/HEAD/tests/resources/local.html -------------------------------------------------------------------------------- /tests/resources/local.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytonwalletorg/cordova-plugin-inappbrowser/HEAD/tests/resources/local.pdf -------------------------------------------------------------------------------- /tests/resources/video.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytonwalletorg/cordova-plugin-inappbrowser/HEAD/tests/resources/video.html -------------------------------------------------------------------------------- /tests/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytonwalletorg/cordova-plugin-inappbrowser/HEAD/tests/tests.js -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytonwalletorg/cordova-plugin-inappbrowser/HEAD/types/index.d.ts -------------------------------------------------------------------------------- /www/inappbrowser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytonwalletorg/cordova-plugin-inappbrowser/HEAD/www/inappbrowser.js --------------------------------------------------------------------------------