Add UserScript and DevTools supports to Chromium based and WebView based browsers using Xposed framework.
We hook the onUpdateUrl
function in UserScript.kt,
add URL comparison there and evaluate JavaScript using the javascript:
scheme.
Chromium based browsers, Bromite, Thorium, Mulch, and Brave are also fully supported. Due to different design ideas, supports for the following browsers are not perfect:
- Egde,
DevTools
front end is removed by its authors; - Vivaldi,
Developer options
menu is removed by its authors.
Most WebView based browsers are also supported, if not, please report it.
Currently, this project requires Xposed framework installed.
For root users, install LSPosed first, pick up the latest built APK from my repo's GitHub Action and install it.
For non-root users,
I modify a bit LSPatch to support ChromeXt
; here is how to use it:
- Download the latest
lspatch-release
from my Github Action. - Download the latest
ChromeXt.apk
from my Github Action. - Extract previously downloaded files to get files
lspatch.jar
(with some suffix) andChromeXt-signed.apk
. - Patch your APK (taking
arm64_ChromePublic.apk
as example) using the following command:java -jar lspatch.jar arm64_ChromePublic.apk -d -v -m ChromeXt-signed.apk --force
. Ifjava
environment is not available, consider using the providedmanager
APK. - Install the patched APK, which might require you to first uninstall the one on your phone.
The author uploads releases to Xposed-Modules-Repo when needed, but not that frequently.
You can then install UserScripts from popular sources: URLs that ends with .user.js
.
However, this fails for scripts from some domains like raw.githubusercontent.com
.
For them, one can download those scripts using the download button on the top of Chrome's three dot menu, and
then open your downloaded scripts in Chrome. The installation prompt should show up again.
Alternatively, it is possible to use the Install UserScript
page menu if you simply want to install it
without further editing.
Currently, ChromeXt supports almost all Tampermonkey APIs:
- @name (colons and backslashes not allowed), @namespace (backslashes not allowed), @description and so on
- @match (must present and conform to the Chrome Standard)
- @include = @match, @exclude
- @run-at: document-start, document-end, document-idle (the default and fallback value)
- @grant GM_addStyle, GM_addElement, GM_xmlhttpRequest, GM_openInTab, GM_registerMenuCommand (
Resources
panel of eruda), GM_unregisterMenuCommand, GM_download, unsafeWindow (= window) - @require, @resource (Without Subresource Integrity)
These APIs are implemented differently from the official ones, see the source file LocalScripts.kt if you have doubts or questions.
To manage scripts installed by ChromeXt
, here are a simple front end hosted on github.io and two mirrors of it (in case that you have connection issues): onrender.com, netlify.app.
If you cancel the prompt of installing a new UserScript, then you can edit it directly in Chrome.
Use the Install UserScript
page menu to install your modified UserScript.
A valid UserScript fails if the following two conditions hold at the same time:
- The matched website has disabled
script-src 'unsafe-eval';
by Content Security Policy; - The script size is nearly 2M.
To deal with this extremely rare case, one should
use multiple scripts of normal sizes instead of a giant script
From three dots page menu, ChromeXt offers you
Developer tools
in the UserScript manager front end,Eruda console
in other pages.
For Edge
browser, these menus are moved to the page info menu,
which locates at the left corner inside the URL input bar.
For WebView based browsers, these menu items are presented in the context menu.
Since WebView based browsers have no unified designs, the following first three features are not supported for them.
The application ChromeXt
is able to
- received shared texts to search them online,
- open JavaScript files to install them as UserScripts.
The reversed priority order of opening which Chromium based browsers is given in AndroidManifest.xml.
The history forward gesture of Chrome is now available near the vertical center of screen.
On other areas, only the system gesture is available.
One can disable it through the Developer options
menu.
(Tap seven times on the Chrome version from the Chrome settings, you will see the Developer options
menu.)
ChromeXt adds a book icon in the page menu to enable reader (distiller) mode manually.
This function is not available in Brave
browser for unknown reason.
For blocking network requests, I recommend to use AdAway
or any proxy AD Blocker such as clash
.
A content cosmetic blocker is embedded into ChromeXt with the help of eruda.
Open the Eruda console
.
In the Elements
panel, one can use the pointer
icon to select elements on the page.
After clicking the delete
icon for a selected element, a corresponding filter will be saved to the Resources
panel,
where one can manage previous added filters.
These filters are saved in the browser even after clearing the site's data.
Another way to block ADs is using the Content-Security-Policy to block some scripts from loading. See the official Content-Security-Policy Blocker UserScript.
One can edit the User-Agent from the Info
panel of Eruda console
.
A valid User-Agent should contain only ASCII characters.
Currently, ChromeXt only changes the User-Agent
HTTP header, which
works well but is deprecated.
For Chromium based browsers, when the User-Agent spoofing is not taking effects, refresh the page using the reload button in the page menu. (By contrast, a swipe refresh might be insufficient.)
Note that the DevTools can also change User-Agent.
Before you submit your pull-requests, please ensure that the command
./gradlew build
or gradlew.bat build
produces no warnings and no errors.
Here are corresponding files you might want / need to change:
- Front end: manager.vue
- Tampermonkey API: LocalScripts.kt
- Eruda configuration: local_eruda.js
- Support more WebView based browsers: WebViewHook.kt
- Make it possible to pass intents to Chrome with
file
scheme - Fix encoding problem for Chrome downloaded JavaScript files
- Inject module resource into Chrome
- Implement developer tools
- Use local versions of eruda
- Improve eruda incorporation with Chrome
- Add more information in the preference screen
- Support more Tampermonkey APIs
- Find elegant way to support DevTools for Android 11-
- Improve front end
- Add cosmetic AdBlocker using eruda
- Find way to get current interactive tab
- Remove AndroidX Room dependency to reduce app size
- Support non-split version of Android Chrome
- Solve the menu hook problem for non-split versions
- Handle multiple Tab Model
- Forward DevTools server socket
- A mobile friendly DevTools front end
- Allow user to trigger reader mode
- Support @resource API
- Make GestureNav Fix optional
- Add an open source License
-
Support mocking User-Agent -
Support urlFilter syntax - Improve
Open in Chrome
function - Implement fully
GM_info
- Eruda fails due to Injection Sinks
- Hide page_info panel automatically
-
Fix Edge browser DevTools inspect url -
Get correct Chromium version - Fix page menu injection position
-
Use Chrome DevTools Protocol as UserScript engine -
Useadb forward
to support non-root users -
Turn Xposed into optional dependency - Fully support WebView based browsers
- Fix LSPatch for isolated process issue
- Add recommended scripts to the front end manager