HomeSort by relevance Sort by last modified time
    Searched refs:content_script (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/chrome/common/extensions/manifest_handlers/
content_scripts_handler.cc 35 // from an entry in the content_script lists of the manifest.
36 bool LoadGlobsHelper(const base::DictionaryValue* content_script,
42 if (!content_script->HasKey(globs_property_name))
46 if (!content_script->GetList(globs_property_name, &list)) {
72 // content_script list of the manifest.
73 bool LoadUserScriptFromDictionary(const base::DictionaryValue* content_script,
79 if (content_script->HasKey(keys::kRunAt)) {
81 if (!content_script->GetString(keys::kRunAt, &run_location)) {
103 if (content_script->HasKey(keys::kAllFrames)) {
105 if (!content_script->GetBoolean(keys::kAllFrames, &all_frames))
    [all...]
  /external/chromium_org/chrome/browser/extensions/
convert_user_script.cc 139 DictionaryValue* content_script = new DictionaryValue(); local
140 content_script->Set(keys::kMatches, matches);
141 content_script->Set(keys::kExcludeMatches, exclude_matches);
142 content_script->Set(keys::kIncludeGlobs, includes);
143 content_script->Set(keys::kExcludeGlobs, excludes);
144 content_script->Set(keys::kJs, js_files);
147 content_script->SetString(keys::kRunAt, values::kRunAtDocumentStart);
149 content_script->SetString(keys::kRunAt, values::kRunAtDocumentEnd);
152 content_script->SetString(keys::kRunAt, values::kRunAtDocumentIdle);
155 content_scripts->Append(content_script);
    [all...]
  /external/chromium/chrome/browser/extensions/
convert_user_script.cc 123 DictionaryValue* content_script = new DictionaryValue(); local
124 content_script->Set(keys::kMatches, matches);
125 content_script->Set(keys::kIncludeGlobs, includes);
126 content_script->Set(keys::kExcludeGlobs, excludes);
127 content_script->Set(keys::kJs, js_files);
130 content_scripts->Append(content_script);
  /external/chromium/chrome/common/extensions/
extension.cc 703 // content_script list of the manifest.
704 bool Extension::LoadUserScriptHelper(const DictionaryValue* content_script,
715 if (content_script->HasKey(keys::kRunAt)) {
717 if (!content_script->GetString(keys::kRunAt, &run_location)) {
737 if (content_script->HasKey(keys::kAllFrames)) {
739 if (!content_script->GetBoolean(keys::kAllFrames, &all_frames)) {
749 if (!content_script->GetList(keys::kMatches, &matches)) {
798 if (!LoadGlobsHelper(content_script, definition_index, keys::kIncludeGlobs,
803 if (!LoadGlobsHelper(content_script, definition_index, keys::kExcludeGlobs,
810 if (content_script->HasKey(keys::kJs) &
2060 DictionaryValue* content_script = NULL; local
    [all...]
extension.h 685 // dictionary in the content_script list of the manifest.
686 bool LoadUserScriptHelper(const DictionaryValue* content_script,
693 // from an entry in the content_script lists of the manifest.
694 bool LoadGlobsHelper(const DictionaryValue* content_script,
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/email_this_page/
background.js 66 chrome.tabs.executeScript(null, {file: "content_script.js"});

Completed in 209 milliseconds