Overview
Comment: | Added the possibility to web page script open gcpanel or lexicographe |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | comunicate |
Files: | files | file ages | folders |
SHA3-256: |
5c25db680b3a8c064bb8de68520e61aa |
User & Date: | IllusionPerdu on 2018-11-06 23:42:33 |
Other Links: | branch diff | manifest | tags |
Context
2018-11-07
| ||
11:37 | Check if action is in event check-in: 9f8939c97c user: IllusionPerdu tags: comunicate | |
2018-11-06
| ||
23:42 | Added the possibility to web page script open gcpanel or lexicographe check-in: 5c25db680b user: IllusionPerdu tags: comunicate | |
18:33 | [fr] nr: confusions diverses check-in: 9b6a855c65 user: olr tags: trunk, fr | |
Changes
Added gc_lang/fr/webext/content_scripts/event.js version [8e71634c5b].
|
Modified gc_lang/fr/webext/content_scripts/init.js from [31953bf9da] to [fb85dd36b8].
︙ | |||
351 352 353 354 355 356 357 | 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 | + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + | case "rescanPage": oGrammalecte.rescanPage(); break; default: console.log("[Content script] Unknown command: " + sActionDone); } }); /* Communicate webpage script <=> web-extension */ var scriptEvent = document.createElement('script'); scriptEvent.src = browser.extension.getURL("content_scripts/event.js"); document.documentElement.appendChild(scriptEvent); document.addEventListener('GrammalecteEvent', function(event) { let actionFromPage = event.detail; console.log(event); let sText = false; let dInfo = {}; let elmForGramma = null; if (actionFromPage.elm){ elmForGramma = document.getElementById(actionFromPage.elm); sText = (elmForGramma.tagName == "TEXTAREA") ? elmForGramma.value : elmForGramma.innerText; dInfo = {sTextAreaId: elmForGramma.id}; } if (actionFromPage.spellcheck){ oGrammalecte.startGCPanel(elmForGramma); xGrammalectePort.postMessage({ sCommand: "parseAndSpellcheck", dParam: {sText: sText || actionFromPage.parseAndSpellcheck, sCountry: "FR", bDebug: false, bContext: false}, dInfo: dInfo }); } if (actionFromPage.lexique){ oGrammalecte.startLxgPanel(); xGrammalectePort.postMessage({ sCommand: "getListOfTokens", dParam: {sText: sText || actionFromPage.lexique}, dInfo: dInfo }); } }); |
Modified gc_lang/fr/webext/manifest.json from [756d794e19] to [6f106795b7].
︙ | |||
110 111 112 113 114 115 116 117 118 119 120 121 122 123 | 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 | + | "grammalecte/graphspell/_dictionaries/fr-allvars.json", "grammalecte/graphspell/_dictionaries/fr-classic.json", "grammalecte/graphspell/_dictionaries/fr-reform.json", "grammalecte/fr/conj_data.json", "grammalecte/fr/mfsp_data.json", "grammalecte/fr/phonet_data.json", "grammalecte/fr/tests_data.json", "content_scripts/event.js", "img/logo-16.png" ], "permissions": [ "activeTab", "contextMenus", "downloads", |
︙ |