summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Fix for various content script timing related issues.hackademix2018-09-094-29/+15
|
* Version bump: 10.1.9.5rc1.hackademix2018-09-091-1/+1
|
* Version bump: 10.1.9.4.hackademix2018-09-091-1/+1
|
* Prevent total breakages when policies accidentally map to invalid match ↵hackademix2018-09-092-13/+22
| | | | patterns.
* Prevent multiple CSP entries to be injected in the DOM on each reload if ↵hackademix2018-09-091-4/+2
| | | | scripting is disabled.
* Message loops checks coping with multiple options window.hackademix2018-09-091-3/+5
|
* Version bump: 10.1.9.4rc1.hackademix2018-09-091-1/+1
|
* Version bump: 10.1.9.3.hackademix2018-09-091-1/+1
|
* Fixed message handling regression causing incompatibilities with embedders ↵hackademix2018-09-091-2/+12
| | | | and potential internal loops.
* Version bump: 10.1.9.3rc1.hackademix2018-09-091-1/+1
|
* Version bump: 10.1.9.2.hackademix2018-09-091-1/+1
|
* More efficient window.name persistence for tab-scoped permissions.hackademix2018-09-084-32/+44
|
* Site parsing more resilient to bogus input.hackademix2018-09-081-1/+1
|
* Fixed regression: undefined fake request.url ends to for inline scripts CSP ↵hackademix2018-09-081-1/+1
| | | | reports.
* Version bump: 10.1.9.2rc4.hackademix2018-09-081-1/+1
|
* Saner message dispatching.hackademix2018-09-085-23/+36
|
* Restored it locale.hackademix2018-09-051-893/+670
|
* Work-around for a potential race condition in message handling on extension ↵hackademix2018-09-052-3/+8
| | | | updates.
* Fixed possible null reference errors in Sites.origin().hackademix2018-09-051-0/+1
|
* Init the CUSTOM preset not just with the capabilities, but also with the ↵hackademix2018-09-051-5/+6
| | | | "temporary" status of the previously selected one.
* Reduced noise from tld.js regular expressions generation.hackademix2018-09-053-8/+12
|
* Stop tracking tld.js build-time intermediate files.hackademix2018-09-056-101/+3
|
* Fixed bug in requestKey generation.hackademix2018-09-051-1/+1
|
* Version bump: 10.1.9.2rc3.hackademix2018-09-051-1/+1
|
* [l10n] Transifex integration.hackademix2018-09-0510-4699/+6292
|
* Ensure we remove the HEAD element parent of our META CSP policy only if we ↵hackademix2018-09-041-2/+3
| | | | created it.
* Work-around for CSP not being honored when the HEAD element has not been ↵hackademix2018-09-043-35/+15
| | | | inserted yet.
* Transparent support for FQDNs and better management of file:/// URLs.hackademix2018-09-045-29/+60
|
* Version bump: 10.1.9.2rc2.hackademix2018-09-041-1/+1
|
* Better file: protocol support.hackademix2018-09-049-81/+146
|
* Full-page placeholders for embedding documents.hackademix2018-09-032-0/+16
|
* Version bump: 10.1.9.2rc1.hackademix2018-09-031-1/+1
|
* Version bump: 10.1.9.1.hackademix2018-08-301-1/+1
|
* Updated tld_template.js.hackademix2018-08-301-48/+48
|
* Merge branch 'master' of https://github.com/hackademix/noscripthackademix2018-08-301-6/+6
|\ | | | | | | Merge pull request #17 from Lekensteyn/fix-serviceworker-check
| * Merge pull request #17 from Lekensteyn/fix-serviceworker-checkhackademix2018-08-301-6/+6
| |\ | | | | | | Fix fallback scripts when ServiceWorkers are unavailable
| | * Fix fallback scripts when ServiceWorkers are unavailablePeter Wu2018-08-301-6/+6
| |/ | | | | | | | | | | | | ServiceWorkers are not available in private browsing mode (and can be disabled otherwise via about:config), be sure to check its availability. Otherwise fallback scripts are not invoked which prevents redirections in <noscript> tags from being executed (as observed with t.co).
* | Version bump: 10.1.9.1rc1hackademix2018-08-301-1/+1
| |
* | Merge branch 'fix/tld'hackademix2018-08-301-3/+3
|\ \ | | | | | | | | | Fixed breakage in tld.js generation when for any reason the source pubblic suffix list contains CRLF characters.
| * | Fixed public suffix parsing potentially broken by CRLF.hackademix2018-08-291-3/+3
| |/
* / Version bump: 10.1.9.hackademix2018-08-291-1/+1
|/
* Fixed typo in restricted.js inclusion.hackademix2018-08-291-1/+1
|
* Version bump: 10.1.9rc6.hackademix2018-08-291-1/+1
|
* Version bump: 10.1.9rc5.hackademix2018-08-291-1/+1
|
* Better timing feedback for permissions changes in the popup UI.hackademix2018-08-281-5/+7
|
* Reload-less service worker busting.hackademix2018-08-282-14/+25
|
* Version bump: 10.1.9rc4.hackademix2018-08-281-1/+1
|
* Reordered startup sequence to be more friendly with embedders like the Tor ↵hackademix2018-08-284-50/+59
| | | | Browser.
* Merge pull request #16 from rustybird/startedhackademix2018-08-281-0/+1
|\ | | | | Broadcast a "started" message after initialization
| * Broadcast a "started" message after initializationRusty Bird2018-08-271-0/+1
| | | | | | | | | | | | | | | | | | Other extensions listening in on NoScript's messages (e.g. Torbutton) can take this message as an indication that it's now safe to send an "updateSettings" message to NoScript without immediately getting clobbered by the configuration loader. See https://trac.torproject.org/projects/tor/ticket/26520 for context.