Add autofill/a11y support for ungoogled.chromium browser (#978)

This commit is contained in:
Matt Portune 2020-06-12 15:01:23 -04:00 committed by GitHub
parent c5f158f1cf
commit 0980219c8d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 0 deletions

View file

@ -86,6 +86,7 @@ namespace Bit.Droid.Accessibility
new Browser("org.mozilla.rocket", "display_url"), new Browser("org.mozilla.rocket", "display_url"),
new Browser("org.torproject.torbrowser", "url_bar_title,mozac_browser_toolbar_url_view"), // 2nd = Anticipation new Browser("org.torproject.torbrowser", "url_bar_title,mozac_browser_toolbar_url_view"), // 2nd = Anticipation
new Browser("org.torproject.torbrowser_alpha", "url_bar_title,mozac_browser_toolbar_url_view"), // 2nd = Anticipation new Browser("org.torproject.torbrowser_alpha", "url_bar_title,mozac_browser_toolbar_url_view"), // 2nd = Anticipation
new Browser("org.ungoogled.chromium", "url_bar"),
// [Section B] Entries only present here // [Section B] Entries only present here
// //

View file

@ -89,6 +89,7 @@ namespace Bit.Droid.Autofill
"org.mozilla.rocket", "org.mozilla.rocket",
"org.torproject.torbrowser", "org.torproject.torbrowser",
"org.torproject.torbrowser_alpha", "org.torproject.torbrowser_alpha",
"org.ungoogled.chromium",
}; };
// The URLs are blacklisted from autofilling // The URLs are blacklisted from autofilling

View file

@ -163,4 +163,7 @@
<compatibility-package <compatibility-package
android:name="org.torproject.torbrowser_alpha" android:name="org.torproject.torbrowser_alpha"
android:maxLongVersionCode="10000000000"/> android:maxLongVersionCode="10000000000"/>
<compatibility-package
android:name="org.ungoogled.chromium"
android:maxLongVersionCode="10000000000"/>
</autofill-service> </autofill-service>