aboutsummaryrefslogtreecommitdiff
path: root/main_background.js
Commit message (Collapse)AuthorAgeFilesLines
* Fixing license-end detection to accept /* */ commentYuchen Pei2022-04-291-1/+2
| | | | | | Previously only // @license-end was accepted.
* lintingYuchen Pei2022-04-071-235/+192
| | | | | - eslint - also adding eslintrc
* Making license_definition.js single source of truth for licensesYuchen Pei2022-04-071-12/+13
| | | | | - Removed licenses.json - cleaned up license_definition.js a bit
* updating validation of @license comments to check magnet / url only.Yuchen Pei2022-04-071-15/+10
| | | | | | - this is the desired behaviour, see also <https://lists.gnu.org/archive/html/help-librejs/2021-12/msg00000.html> - also changed some unmuated identifiers from let to const
* nop whitespace formatting change.Yuchen Pei2022-04-071-948/+952
| | | | | | | | - ran eglot-format using typescript-language-server on all js files in the repo except those under /hash_script/ - verify only whitespace changed: git diff --word-diff-regex=. 62d6a71 62d6a71~1
* bug #59021Girish M2021-12-031-1/+2
| | | allow matching license URL strings by either http or https
* Simplified validateLicense()Ruben Rodriguez2019-05-061-22/+15
|
* Allow for detection of @license declarations with no links. Show human ↵Ruben Rodriguez2019-05-011-11/+17
| | | | readable license names
* Display NOSCRIPT elements when scripts are blocked or the ↵hackademix2019-04-301-11/+53
| | | | data-librejs-display attribute is present.
* More consistent and efficient blacklisting.hackademix2019-04-121-38/+41
|
* Fixed UI inconsistencies when whitelisting/blacklisting through wide ↵hackademix2019-04-081-1/+5
| | | | wildcard matching.
* Automated regression tests for whitelist and blacklist management, including ↵hackademix2019-03-261-0/+1
| | | | wildcards.
* Subdomain wildcard support.hackademix2019-03-261-8/+8
|
* Fix for large scripts thrashing the black/white lists when added.hackademix2019-03-111-13/+2
|
* Fixed inline whitelisting regressions (issue #35).hackademix2019-03-051-19/+19
|
* Generate code view widget for first inline script with global license too.hackademix2019-02-251-2/+4
|
* Fixed bug preventing javascript: URLs from being correctly processed.hackademix2019-02-251-0/+1
|
* Deduplicate inline scripts and provide widgets to show them in main UI.hackademix2019-02-221-18/+30
|
* Fixed regression hiding some inline scripts and global license ref from UI ↵hackademix2019-02-131-5/+13
| | | | reports.
* UI: contextual view-source links for inline scripts and intrinsic events.hackademix2019-02-121-7/+15
|
* Gracefully degrade browser.sessions-based tab info cache on mobile.hackademix2019-01-281-3/+4
|
* Android-compatible browserAction management.hackademix2019-01-281-2/+8
|
* URL matching for report data should ignore hash component.hackademix2018-11-031-10/+9
|
* Correctly handle multiple inline scripts, multiple intrinsic events, ↵Ruben Rodriguez2018-10-311-9/+26
| | | | | | whitelisting/blacklisting and listing in the panel. Before this, only the first inline script would get properly handled. This also corrects script comments for href="javascript:foo" types of scripts, which cannot get comments added in to state the result of LibreJS parsing.
* More generalized license matchingRuben Rodriguez2018-10-311-3/+11
| | | | | * Allow for length >= 4 since somebody may write "GPL2.0 or later" or something like that. It should still work if the tag follows the new recommendations. * Match the link to the URL or Magnet Link fields in the licenses table. Currently it matches only by id, and the link field is only used to fail the match if the link is not the same as in the table.
* Defining or calling functions does not qualify as nontrivialRuben Rodriguez2018-10-311-12/+7
|
* Reimplement intrinsic event iteration.Ruben Rodriguez2018-10-311-34/+12
| | | | The new code processes any attribute that starts with "on", or href attributes that start with "javascript:" and parses them assigning them a unique url, so that all of them are independently addressable by the panel and by white/blacklisting. This fixes the fact that the previous code would only parse some types of attributes using a list of names, would only parse the first matching attribute in an element, and would only list one intrinsic event per page in the panel. It also fixes the content of the attribute being mangled to the first character of the original code.
* Jasmine-based automated tests suite.hackademix2018-10-021-0/+15
|
* Lenient WebLabels matching (by URL, by id, by name).hackademix2018-10-021-2/+3
|
* Refactored inline license tag / triviality check driver for performance, ↵hackademix2018-09-271-76/+74
| | | | readability and fixing 2 semantic bugs causing non-trivial unlicensed scripts not to be blocked.
* More meaningful license tag validation messages.hackademix2018-09-261-17/+16
|
* Improved and partially refactored floating dialog.hackademix2018-09-261-8/+13
|
* Initial refactoring and unhiding of contact finder / complaint UI.hackademix2018-09-181-7/+31
|
* Update for compatibility with Acorn 6.hackademix2018-09-181-6/+5
|
* Merge #17 `Brand new settings UI to manage whitelist, blacklist and other ↵Ruben Rodriguez2018-09-131-95/+95
|\ | | | | | | preferences. `
| * Adjust directory layout and packaging to allow Storage.js to be shared with ↵hackademix2018-09-131-95/+95
| | | | | | | | the settings page in the xpi release.
* | Fix navigating the same url with hash erases script activity report information.hackademix2018-09-061-1/+1
|/
* Fix typo in intrinsec events loop.hackademix2018-09-051-1/+1
|
* Internal refactoring of htmlEdit() using idiomatic asynchronous ES for ↵hackademix2018-09-021-87/+72
| | | | better maintainability and fixing problematic Promise usage.
* Fixes serialization of modified HTML documents erases DOCTYPE and root ↵hackademix2018-09-021-1/+17
| | | | element information, possibly causing rendering issues.
* Fixed weblabels not being checked in whitelisted documents unless they ↵hackademix2018-09-021-15/+19
| | | | precede scripts.
* Moved external licenses check into response pre-processing, in order to ↵hackademix2018-09-011-24/+25
| | | | avoid filterResponse() as much as possible (fixing issue #11)
* Fixed regression: activity reports being accidentally reset when top ↵hackademix2018-08-201-11/+13
| | | | document URL contains a query string.
* WebLabels-based license checking implementation.hackademix2018-08-201-4/+23
|
* Cope with tabId changes on session restore.hackademix2018-08-141-0/+2
|
* Removed browser->webex "shim".hackademix2018-08-141-30/+9
|
* Fix for bug #54459: "Back/forth navigation does not change tab status ↵hackademix2018-08-141-27/+44
| | | | information"
* Renamed "unused_data" to "activityReport" and "active_connection" to ↵hackademix2018-08-131-28/+28
| | | | "activeMessagPorts".
* Removed some debugging noise.hackademix2018-08-071-2/+0
|
* Fixed scripts whose URLs had a query string could not be whitelisted.hackademix2018-08-061-3/+3
|