├── README.md ├── _locales ├── bg │ └── messages.json ├── de │ └── messages.json ├── en │ └── messages.json ├── nl │ └── messages.json └── ru │ └── messages.json ├── background.js ├── changelog-ru.md ├── changelog.md ├── content.js ├── global.js ├── i18n.js ├── icon16-off.png ├── icon16.png ├── icon24-off.png ├── icon24.png ├── license.txt ├── make.bat ├── make.sh ├── manifest.json ├── options.html └── options.js /README.md: -------------------------------------------------------------------------------- 1 | WebExtensions port of Right Links extension for Firefox/SeaMonkey (see Right_Links#31). 2 | 3 | ## Issues 4 |
Description | 8 |Part | 9 |Status | 10 |Severity | 11 |Firefox bug | 12 |
---|---|---|---|---|
browser.tabs.create({ openerTabId: … }) in Firefox 57+ |
19 | 21 | | |||
Ability to handle clicks on bookmarks and history items | 24 |Core functionality | 25 |No API | 26 |Major | 27 |28 | |
Ability to handle clicks on internal restricted pages (about:…, chrome://…, especially on about:newtab) | 31 |Core functionality | 32 |No API | 33 |Major | 34 |35 | |
Ability to handle clicks on restricted webpages (like addons.mozilla.org) | 38 |Core functionality | 39 |
40 | May be configured (at your own risk) in about:config:
41 | privacy.resistFingerprinting.block_mozAddonManager = true 42 | extensions.webextensions.restrictedDomains = "" (empty string, or remove some domains as you like) 43 | |
44 | Major | 45 |46 | |
Ability to simulate click on JavaScript-links (e.g. with `window.open()` inside) | 49 |Core functionality | 50 |No API, new tabs/windows will be blocked | 51 |Major | 52 |53 | |
Ability to programmatically open context menu | 56 |UX | 57 |No API | 58 |Major | 59 |60 | |
Ability to send HTTP referer | 63 |Core functionality | 64 |No API | 65 |Major | 66 |67 | |
Works from background script: URL.createObjectURL(Blob) |
72 | 74 | | |||
browser.commands.update() in Firefox 60+ |
79 |