/external/chromium_org/chrome/common/extensions/docs/templates/public/extensions/ |
tabs.html | 1 {{+partials.standard_extensions_api api:apis.tabs intro:intros.tabs/}}
|
/external/chromium/chrome/common/extensions/docs/examples/api/processes/show_tabs/ |
manifest.json | 2 "name": "Show Tabs in Process", 4 "description": "Adds a browser action showing which tabs share the current tab's process.", 6 "experimental", "tabs" 9 "default_title": "Show Tabs in this Process",
|
/external/chromium_org/chrome/common/extensions/docs/examples/api/processes/show_tabs/ |
manifest.json | 2 "name": "Show Tabs in Process", 4 "description": "Adds a browser action showing which tabs share the current tab's process.", 6 "processes", "tabs", "chrome://favicon/*" 9 "default_title": "Show Tabs in this Process",
|
/external/chromium_org/chrome/common/extensions/docs/templates/private/permissions/ |
tabs.html | 1 Gives your {{platform}} access to privileged fields of the <code>$ref:[tabs.Tab Tab]</code> objects used by several APIs including $ref:[tabs chrome.tabs] and $ref:[windows chrome.windows]. In many circumstances your {{platform}} will not need to declare the <code>"tabs"</code> permission to make use of these APIs.
|
/external/chromium_org/chrome/common/extensions/docs/templates/intros/ |
tabs.html | 4 You can use most <code>chrome.tabs</code> methods and events without declaring 7 <code>$ref:[tabs.Tab.url url]</code>, 8 <code>$ref:[tabs.Tab.title title]</code>, or 9 <code>$ref:[tabs.Tab.favIconUrl favIconUrl]</code> properties of 10 <code>$ref:tabs.Tab</code>, 11 you must declare the <code>"tabs"</code> permission in the manifest, 20 "tabs" 29 <img src="{{static}}/images/tabs.png" 30 width="561" height="130" alt="Two tabs in a window" /> 32 You can find simple examples of manipulating tabs with th [all...] |
/external/chromium/chrome/common/extensions/docs/examples/api/tabs/inspector/ |
manifest.json | 3 "description": "Utility for working with the extension tabs api", 5 "permissions": ["tabs"],
|
background.html | 3 chrome.tabs.create({url:chrome.extension.getURL("tabs_api.html")});
|
/external/chromium_org/chrome/common/extensions/docs/examples/api/tabs/inspector/ |
manifest.json | 3 "description": "Utility for working with the extension tabs api", 5 "permissions": ["tabs"],
|
/build/tools/droiddoc/templates-ds/ |
header_tabs.cs | 2 <!-- CURRENTLY NOT USED... ALL TABS ARE IN masthead.cs -->
|
/build/tools/droiddoc/templates-sac/ |
header_tabs.cs | 2 <!-- CURRENTLY NOT USED... ALL TABS ARE IN masthead.cs -->
|
/build/tools/droiddoc/templates-sdk/ |
header_tabs.cs | 2 <!-- CURRENTLY NOT USED... ALL TABS ARE IN masthead.cs -->
|
/external/chromium/chrome/common/extensions/docs/static/ |
tabs.html | 1 <div id="pageData-name" class="pageData">Tabs</div> 5 Use the <code>chrome.tabs</code> module 8 create, modify, and rearrange tabs in the browser. 11 <img src="images/tabs.png" 12 width="323" height="50" alt="Two tabs in a window" /> 16 Almost all <code>chrome.tabs</code> methods require you to 17 declare the "tabs" permission 26 "tabs" 32 The two methods that don't require the "tabs" permission are 41 You can find simple examples of using the tabs module in th [all...] |
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/speak_selection/ |
tabs.js | 10 var tabs = windows[i].tabs; 11 for (var j = 0; j < tabs.length; j++) { 12 chrome.tabs.sendRequest( 13 tabs[j].id, 23 var tabs = windows[i].tabs; 24 for (var j = 0; j < tabs.length; j++) { 25 chrome.tabs.executeScript( 26 tabs[j].id [all...] |
/external/markdown/MarkdownTest/Tests_2004/ |
Tabs.text | 2 indented with tabs 13 this code block is indented by two tabs 18 indented with tabs
|
/external/markdown/MarkdownTest/Tests_2007/ |
Tabs.text | 2 indented with tabs 13 this code block is indented by two tabs 18 indented with tabs
|
/external/markdown/tests/markdown-test/ |
tabs.txt | 2 indented with tabs 13 this code block is indented by two tabs 18 indented with tabs
|
/external/chromium_org/chrome/common/extensions/docs/templates/private/intro_tables/ |
windows_permissions.html | 3 However, the <code>"tabs"</code> permission is 5 <code><a href="tabs.html#property-Tab-url">url</a></code>, 6 <code><a href="tabs.html#property-Tab-title">title</a></code>, and 7 <code><a href="tabs.html#property-Tab-favIconUrl">favIconUrl</a></code> properties of 8 <code><a href="tabs.html#type-Tab">Tab</a></code> objects.
|
/external/chromium/chrome/browser/extensions/ |
extension_event_names.cc | 9 const char kOnTabAttached[] = "tabs.onAttached"; 10 const char kOnTabCreated[] = "tabs.onCreated"; 11 const char kOnTabDetached[] = "tabs.onDetached"; 12 const char kOnTabMoved[] = "tabs.onMoved"; 13 const char kOnTabRemoved[] = "tabs.onRemoved"; 14 const char kOnTabSelectionChanged[] = "tabs.onSelectionChanged"; 15 const char kOnTabUpdated[] = "tabs.onUpdated";
|
/external/chromium/chrome/common/extensions/docs/examples/api/cookies/ |
background.html | 11 var tabs = windows[i].tabs;
12 for (var j in tabs) {
13 var tab = tabs[j];
21 chrome.tabs.update(existing_tab.id, {"selected":true});
23 chrome.tabs.create({"url":url, "selected":true});
|
/external/chromium_org/chrome/browser/ui/tabs/ |
tab_strip_model_utils.cc | 5 #include "chrome/browser/ui/tabs/tab_strip_model_utils.h" 8 #include "chrome/browser/ui/tabs/tab_strip_model.h" 19 // No blocked tabs. 23 void GetOpenUrls(const TabStripModel& tabs, 26 for (int i = 0; i < tabs.count(); ++i) { 27 content::WebContents* web_contents = tabs.GetWebContentsAt(i);
|
/external/chromium_org/chrome/common/extensions/docs/examples/api/cookies/ |
background.js | 13 var tabs = windows[i].tabs; 14 for (var j in tabs) { 15 var tab = tabs[j]; 23 chrome.tabs.update(existing_tab.id, {"selected":true}); 25 chrome.tabs.create({"url":url, "selected":true});
|
/external/chromium_org/chrome/common/extensions/docs/examples/api/i18n/cld/ |
background.js | 7 chrome.tabs.detectLanguage(null, function(language) { 15 chrome.tabs.onUpdated.addListener(function(tabId, props) { 20 chrome.tabs.onSelectionChanged.addListener(function(tabId, props) { 25 chrome.tabs.query({active: true, currentWindow: true}, function(tabs) { 26 selectedId = tabs[0].id;
|
/external/chromium/chrome/common/extensions/docs/examples/api/i18n/cld/ |
manifest.json | 7 "tabs"
|
/external/chromium_org/base/test/data/prefs/ |
read.json | 4 "tabs": {
|
write.golden.json | 7 "tabs": {
|