├── .appveyor.yml ├── .asf.yaml ├── .eslintrc.yml ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── SUPPORT_QUESTION.md │ ├── bug_report.md │ └── feature_request.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .npmignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── README.md ├── RELEASENOTES.md ├── package.json ├── plugin.xml ├── src ├── android │ ├── InAppBrowser.java │ ├── InAppBrowserDialog.java │ ├── InAppChromeClient.java │ ├── res │ │ ├── drawable-hdpi │ │ │ ├── ic_action_next_item.png │ │ │ ├── ic_action_previous_item.png │ │ │ └── ic_action_remove.png │ │ ├── drawable-mdpi │ │ │ ├── ic_action_next_item.png │ │ │ ├── ic_action_previous_item.png │ │ │ └── ic_action_remove.png │ │ ├── drawable-xhdpi │ │ │ ├── ic_action_next_item.png │ │ │ ├── ic_action_previous_item.png │ │ │ └── ic_action_remove.png │ │ └── drawable-xxhdpi │ │ │ ├── ic_action_next_item.png │ │ │ ├── ic_action_previous_item.png │ │ │ └── ic_action_remove.png │ └── update_manifest.js ├── browser │ └── InAppBrowserProxy.js ├── ios │ ├── AppDelegate+PopupBridge.h │ ├── AppDelegate+PopupBridge.m │ ├── CDVInAppBrowserNavigationController.h │ ├── CDVInAppBrowserNavigationController.m │ ├── CDVInAppBrowserOptions.h │ ├── CDVInAppBrowserOptions.m │ ├── CDVWKInAppBrowser.h │ ├── CDVWKInAppBrowser.m │ ├── CDVWKInAppBrowserUIDelegate.h │ ├── CDVWKInAppBrowserUIDelegate.m │ ├── POPPopUpBridge.LICENSE │ ├── POPPopUpBridge.h │ ├── POPPopUpBridge.m │ ├── POPWeakScriptMessageDelegate.h │ └── POPWeakScriptMessageDelegate.m ├── osx │ ├── CDVInAppBrowser.h │ └── CDVInAppBrowser.m └── windows │ └── InAppBrowserProxy.js ├── 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.css └── inappbrowser.js /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.asf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/.asf.yaml -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/SUPPORT_QUESTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/.github/ISSUE_TEMPLATE/SUPPORT_QUESTION.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .* 2 | appveyor.yml 3 | tests 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/README.md -------------------------------------------------------------------------------- /RELEASENOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/RELEASENOTES.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/package.json -------------------------------------------------------------------------------- /plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/plugin.xml -------------------------------------------------------------------------------- /src/android/InAppBrowser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/src/android/InAppBrowser.java -------------------------------------------------------------------------------- /src/android/InAppBrowserDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/src/android/InAppBrowserDialog.java -------------------------------------------------------------------------------- /src/android/InAppChromeClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/src/android/InAppChromeClient.java -------------------------------------------------------------------------------- /src/android/res/drawable-hdpi/ic_action_next_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/src/android/res/drawable-hdpi/ic_action_next_item.png -------------------------------------------------------------------------------- /src/android/res/drawable-hdpi/ic_action_previous_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/src/android/res/drawable-hdpi/ic_action_previous_item.png -------------------------------------------------------------------------------- /src/android/res/drawable-hdpi/ic_action_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/src/android/res/drawable-hdpi/ic_action_remove.png -------------------------------------------------------------------------------- /src/android/res/drawable-mdpi/ic_action_next_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/src/android/res/drawable-mdpi/ic_action_next_item.png -------------------------------------------------------------------------------- /src/android/res/drawable-mdpi/ic_action_previous_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/src/android/res/drawable-mdpi/ic_action_previous_item.png -------------------------------------------------------------------------------- /src/android/res/drawable-mdpi/ic_action_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/src/android/res/drawable-mdpi/ic_action_remove.png -------------------------------------------------------------------------------- /src/android/res/drawable-xhdpi/ic_action_next_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/src/android/res/drawable-xhdpi/ic_action_next_item.png -------------------------------------------------------------------------------- /src/android/res/drawable-xhdpi/ic_action_previous_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/src/android/res/drawable-xhdpi/ic_action_previous_item.png -------------------------------------------------------------------------------- /src/android/res/drawable-xhdpi/ic_action_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/src/android/res/drawable-xhdpi/ic_action_remove.png -------------------------------------------------------------------------------- /src/android/res/drawable-xxhdpi/ic_action_next_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/src/android/res/drawable-xxhdpi/ic_action_next_item.png -------------------------------------------------------------------------------- /src/android/res/drawable-xxhdpi/ic_action_previous_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/src/android/res/drawable-xxhdpi/ic_action_previous_item.png -------------------------------------------------------------------------------- /src/android/res/drawable-xxhdpi/ic_action_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/src/android/res/drawable-xxhdpi/ic_action_remove.png -------------------------------------------------------------------------------- /src/android/update_manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/src/android/update_manifest.js -------------------------------------------------------------------------------- /src/browser/InAppBrowserProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/src/browser/InAppBrowserProxy.js -------------------------------------------------------------------------------- /src/ios/AppDelegate+PopupBridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/src/ios/AppDelegate+PopupBridge.h -------------------------------------------------------------------------------- /src/ios/AppDelegate+PopupBridge.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/src/ios/AppDelegate+PopupBridge.m -------------------------------------------------------------------------------- /src/ios/CDVInAppBrowserNavigationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/src/ios/CDVInAppBrowserNavigationController.h -------------------------------------------------------------------------------- /src/ios/CDVInAppBrowserNavigationController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/src/ios/CDVInAppBrowserNavigationController.m -------------------------------------------------------------------------------- /src/ios/CDVInAppBrowserOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/src/ios/CDVInAppBrowserOptions.h -------------------------------------------------------------------------------- /src/ios/CDVInAppBrowserOptions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/src/ios/CDVInAppBrowserOptions.m -------------------------------------------------------------------------------- /src/ios/CDVWKInAppBrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/src/ios/CDVWKInAppBrowser.h -------------------------------------------------------------------------------- /src/ios/CDVWKInAppBrowser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/src/ios/CDVWKInAppBrowser.m -------------------------------------------------------------------------------- /src/ios/CDVWKInAppBrowserUIDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/src/ios/CDVWKInAppBrowserUIDelegate.h -------------------------------------------------------------------------------- /src/ios/CDVWKInAppBrowserUIDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/src/ios/CDVWKInAppBrowserUIDelegate.m -------------------------------------------------------------------------------- /src/ios/POPPopUpBridge.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/src/ios/POPPopUpBridge.LICENSE -------------------------------------------------------------------------------- /src/ios/POPPopUpBridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/src/ios/POPPopUpBridge.h -------------------------------------------------------------------------------- /src/ios/POPPopUpBridge.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/src/ios/POPPopUpBridge.m -------------------------------------------------------------------------------- /src/ios/POPWeakScriptMessageDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/src/ios/POPWeakScriptMessageDelegate.h -------------------------------------------------------------------------------- /src/ios/POPWeakScriptMessageDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/src/ios/POPWeakScriptMessageDelegate.m -------------------------------------------------------------------------------- /src/osx/CDVInAppBrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/src/osx/CDVInAppBrowser.h -------------------------------------------------------------------------------- /src/osx/CDVInAppBrowser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/src/osx/CDVInAppBrowser.m -------------------------------------------------------------------------------- /src/windows/InAppBrowserProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/src/windows/InAppBrowserProxy.js -------------------------------------------------------------------------------- /tests/.eslintrc.yml: -------------------------------------------------------------------------------- 1 | env: 2 | jasmine: true -------------------------------------------------------------------------------- /tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/tests/package.json -------------------------------------------------------------------------------- /tests/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/tests/plugin.xml -------------------------------------------------------------------------------- /tests/resources/inject.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/tests/resources/inject.css -------------------------------------------------------------------------------- /tests/resources/inject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/tests/resources/inject.html -------------------------------------------------------------------------------- /tests/resources/inject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/tests/resources/inject.js -------------------------------------------------------------------------------- /tests/resources/local.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/tests/resources/local.html -------------------------------------------------------------------------------- /tests/resources/local.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/tests/resources/local.pdf -------------------------------------------------------------------------------- /tests/resources/video.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/tests/resources/video.html -------------------------------------------------------------------------------- /tests/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/tests/tests.js -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/types/index.d.ts -------------------------------------------------------------------------------- /www/inappbrowser.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/www/inappbrowser.css -------------------------------------------------------------------------------- /www/inappbrowser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-inappbrowser-popup-bridge/HEAD/www/inappbrowser.js --------------------------------------------------------------------------------