Overview
Comment: | [fx] Use the extension ID for the Frame name limit the chance of interference with other extension or code in webpage |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | fx | webext_sharedworker |
Files: | files | file ages | folders |
SHA3-256: |
f7edaf2be989bb10c3d6a78165353a12 |
User & Date: | IllusionPerdu on 2017-08-10 18:03:41 |
Other Links: | branch diff | manifest | tags |
Context
2017-08-10
| ||
18:25 | [fx] Fix previous commit check-in: 438b74bcdf user: IllusionPerdu tags: fx, webext_sharedworker | |
18:03 | [fx] Use the extension ID for the Frame name limit the chance of interference with other extension or code in webpage check-in: f7edaf2be9 user: IllusionPerdu tags: fx, webext_sharedworker | |
17:54 | [fx] Add filter in messages exchange to fix some double exec check-in: 470dd34432 user: IllusionPerdu tags: fx, webext_sharedworker | |
Changes
Modified gc_lang/fr/webext/content_scripts/modify_page.js from [ca56c295c7] to [f0736e207f].
︙ | |||
18 19 20 21 22 23 24 25 | 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | + - + - + - - + + - + | console.log('[Web] received (from iframe (Sharedworker)):', oEvent); } } /* * Creation d'une iframe pour communiquer entre la page visitée et le Shareworker */ let sFrameID = browser.extension.getURL("").split('/').pop(); var iframe = document.createElement('iframe'); |
︙ |