mirror of
https://gitlab.com/KevinRoebert/ClearUrls
synced 2025-12-15 21:55:36 +07:00
7 lines
163 B
JavaScript
7 lines
163 B
JavaScript
/**
|
|
* This file writes only the version into every page.
|
|
* @return version
|
|
*/
|
|
var version = browser.runtime.getManifest().version;
|
|
$('#version').text(version);
|