MCPcopy Create free account
hub / github.com/LeFroid/Viper-Browser / UserScript

Method UserScript

src/core/user_scripts/UserScript.cpp:7–21  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5#include <QTextStream>
6
7UserScript::UserScript() :
8 m_name(),
9 m_namespace(),
10 m_description(),
11 m_version(),
12 m_noSubFrames(false),
13 m_isEnabled(true),
14 m_injectionTime(ScriptInjectionTime::DocumentEnd),
15 m_includes(),
16 m_excludes(),
17 m_dependencies(),
18 m_scriptData(),
19 m_dependencyData()
20{
21}
22
23const QString &UserScript::getName() const
24{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected