Skip to content
This repository has been archived by the owner on Jul 22, 2024. It is now read-only.

Commit

Permalink
A new branch with a less specific label for capturing the fxr+coil te…
Browse files Browse the repository at this point in the history
…st. Added coil to this. This current one is based on fxr 10.1
  • Loading branch information
anselm committed Jun 8, 2020
1 parent 54b1018 commit 6619cab
Show file tree
Hide file tree
Showing 42 changed files with 682 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import java.util.concurrent.CompletableFuture

object EngineProvider {

private val WEB_EXTENSIONS = arrayOf("webcompat_vimeo", "webcompat_youtube")
private val WEB_EXTENSIONS = arrayOf("webcompat_vimeo", "webcompat_youtube", "coil" )

private var runtime: GeckoRuntime? = null
private var executor: GeckoWebExecutor? = null
Expand Down
26 changes: 26 additions & 0 deletions app/src/main/assets/web_extensions/coil/background.js

Large diffs are not rendered by default.

19 changes: 19 additions & 0 deletions app/src/main/assets/web_extensions/coil/content.js

Large diffs are not rendered by default.

41 changes: 41 additions & 0 deletions app/src/main/assets/web_extensions/coil/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{
"name": "Coil",
"description": "Support websites and creators with Web Monetization",
"version": "0.0.49",
"manifest_version": 2,
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
},
"icons": {
"128": "res/icn-coil-on.png"
},
"browser_action": {
"default_icon": "res/icn-coil-off.png",
"default_popup": "static/popup.html"
},
"background": {
"page": "static/background.html"
},
"web_accessible_resources": [],
"content_scripts": [
{
"matches": [
"https://*/*",
"http://*/*"
],
"js": [
"content.js"
],
"match_about_blank": false,
"all_frames": true,
"run_at": "document_start"
}
],
"permissions": [
"webNavigation",
"<all_urls>"
]
}
78 changes: 78 additions & 0 deletions app/src/main/assets/web_extensions/coil/options.js

Large diffs are not rendered by default.

78 changes: 78 additions & 0 deletions app/src/main/assets/web_extensions/coil/popup.js

Large diffs are not rendered by default.

10 changes: 10 additions & 0 deletions app/src/main/assets/web_extensions/coil/res/CoilHeaderLogo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions app/src/main/assets/web_extensions/coil/res/CoilLogo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
102 changes: 102 additions & 0 deletions app/src/main/assets/web_extensions/coil/res/CoilLogoXMAS.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions app/src/main/assets/web_extensions/coil/res/arrow.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions app/src/main/assets/web_extensions/coil/res/channel-icn.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions app/src/main/assets/web_extensions/coil/res/dollar.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions app/src/main/assets/web_extensions/coil/res/icon-page.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
32 changes: 32 additions & 0 deletions app/src/main/assets/web_extensions/coil/res/img-explore.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 6619cab

Please sign in to comment.