Overview
Comment: | [fx] WebExt: list of exceptions for loading content-scripts: wait that the page is fully loaded |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | fx |
Files: | files | file ages | folders |
SHA3-256: |
455edca358485526455fe1971ae9e5fd |
User & Date: | olr on 2017-09-11 09:37:47 |
Original Comment: | [fx] WebExt: list of exception for loading content-scripts: wait that the page is fully loaded |
Other Links: | manifest | tags |
Context
2017-09-11
| ||
10:05 | [fx] WebExt: z-index adjustments check-in: 995e6a8212 user: olr tags: trunk, fx | |
09:37 | [fx] WebExt: list of exceptions for loading content-scripts: wait that the page is fully loaded check-in: 455edca358 user: olr tags: trunk, fx | |
2017-09-08
| ||
14:22 | [fx] WebExt: animated button experiments check-in: 0cf08256b7 user: olr tags: trunk, fx | |
Changes
Modified gc_lang/fr/webext/manifest.json from [33a68fe1cd] to [12ee19ff14].
︙ | ︙ | |||
9 10 11 12 13 14 15 | "id": "French-GC@grammalecte.net", "strict_min_version": "55.0" } }, "author": "Olivier R.", "homepage_url": "https://grammalecte.net", | < > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 9 10 11 12 13 14 15 16 17 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 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 | "id": "French-GC@grammalecte.net", "strict_min_version": "55.0" } }, "author": "Olivier R.", "homepage_url": "https://grammalecte.net", "description": "Correcteur grammatical pour le français.", "default_locale": "fr", "icons": { "16": "img/logo-16.png", "32": "img/logo-32.png", "48": "img/logo-48.png", "64": "img/logo-64.png", "80": "img/logo-80.png", "96": "img/logo-96.png" }, "browser_action": { "default_icon": "img/logo-32.png", "default_popup": "panel/main.html", "default_title": "Grammalecte [fr]", "browser_style": false }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": ["<all_urls>"], "exclude_matches": [ "*://*.wikisource.org/*", "*://*.wikipedia.org/*", "*://*.wiktionary.org/*" ], "css": [ "content_scripts/panel.css", "content_scripts/panel_tf.css", "content_scripts/panel_gc.css", "content_scripts/panel_lxg.css", "content_scripts/menu.css", "3rd/font-awesome-4.7.0/css/font-awesome.min.css" ], "js": [ "content_scripts/panel.js", "grammalecte/fr/textformatter.js", "content_scripts/panel_tf.js", "content_scripts/panel_gc.js", "content_scripts/panel_lxg.js", "content_scripts/menu.js", "content_scripts/init.js" ], "run_at": "document_end" }, { "matches": [ "*://*.wikisource.org/*", "*://*.wikipedia.org/*", "*://*.wiktionary.org/*" ], "css": [ "content_scripts/panel.css", "content_scripts/panel_tf.css", "content_scripts/panel_gc.css", "content_scripts/panel_lxg.css", "content_scripts/menu.css", "3rd/font-awesome-4.7.0/css/font-awesome.min.css" ], "js": [ "content_scripts/panel.js", "grammalecte/fr/textformatter.js", "content_scripts/panel_tf.js", "content_scripts/panel_gc.js", "content_scripts/panel_lxg.js", "content_scripts/menu.js", "content_scripts/init.js" ], "run_at": "document_idle" } ], "commands": { "conjugueur_tab": { "suggested_key": { "default": "Ctrl+Shift+F6" }, "description": "Ouvre le conjugueur dans un onglet" }, "conjugueur_window": { "suggested_key": { "default": "Ctrl+Shift+F7" }, "description": "Ouvre le conjugueur dans une fenêtre" } }, "web_accessible_resources": [ "grammalecte/_dictionaries/French.json", "grammalecte/fr/conj_data.json", "grammalecte/fr/mfsp_data.json", "grammalecte/fr/phonet_data.json", "grammalecte/fr/tests_data.json", "img/logo-16.png" ], "permissions": [ "activeTab", "contextMenus", "storage" ], "chrome_settings_overrides": { "search_provider": { "name": "Grammalecte", "search_url": "https://www.dicollecte.org/dictionary.php?prj=fr&lemma={searchTerms}", "keyword": "disc", "favicon_url": "https://www.dicollecte.org/favicon.ico" } } } |