实例介绍
chrome插件API中文版,从国外下的,有需要的拿去吧。
【实例截图】
【核心代码】
apizh
└── api zh
├── apps
│ ├── about_apps.html
│ ├── analytics.html
│ ├── angular_framework.html
│ ├── api_index.html
│ ├── api_other.html
│ ├── app_architecture.html
│ ├── app_codelab_10_publishing.html
│ ├── app_codelab1_setup.html
│ ├── app_codelab2_basic.html
│ ├── app_codelab3_mvc.html
│ ├── app_codelab5_data.html
│ ├── app_codelab6_lifecycle.html
│ ├── app_codelab7_useridentification.html
│ ├── app_codelab8_webresources.html
│ ├── app_codelab.html
│ ├── app_deprecated.html
│ ├── app_external.html
│ ├── app_frameworks.html
│ ├── app_identity.html
│ ├── app_lifecycle.html
│ ├── app_network.html
│ ├── app.runtime.html
│ ├── app_serial.html
│ ├── apps.html
│ ├── app_storage.html
│ ├── app_usb.html
│ ├── app.window.html
│ ├── bluetooth.html
│ ├── cloudMessaging.html
│ ├── commands.html
│ ├── contentSecurityPolicy.html
│ ├── contextMenus.html
│ ├── desktop_notifications.html
│ ├── faq.html
│ ├── fileSystem.html
│ ├── first_app.html
│ ├── gcm_server.html
│ ├── gcm_tos.html
│ ├── google_wallet.html
│ ├── identity.html
│ ├── manifest.html
│ ├── mediaGalleries.html
│ ├── notifications.html
│ ├── offline_apps.html
│ ├── permissions.html
│ ├── publish_app.html
│ ├── pushMessaging.html
│ ├── runtime.html
│ ├── samples.html
│ ├── sencha_framework.html
│ ├── serial.html
│ ├── socket.html
│ ├── storage.html
│ ├── syncFileSystem.html
│ ├── system.cpu.html
│ ├── system.display.html
│ ├── system.memory.html
│ ├── system.storage.html
│ └── tags
│ └── webview.html
├── css
│ ├── feed.css
│ └── options.css
├── extensions
│ ├── a11y.html
│ ├── activeTab.html
│ ├── alarms.html
│ ├── api_index.html
│ ├── api_other.html
│ ├── app_csp.html
│ ├── app_external.html
│ ├── app_identity.html
│ ├── app_lifecycle.html
│ ├── app.runtime.html
│ ├── app_storage.html
│ ├── app.window.html
│ ├── autoupdate.html
│ ├── background_pages.html
│ ├── bookmarks.html
│ ├── browserAction.html
│ ├── browsingData.html
│ ├── cloudMessaging.html
│ ├── commands.html
│ ├── content_scripts.html
│ ├── contentSecurityPolicy.html
│ ├── contentSettings.html
│ ├── contextMenus.html
│ ├── cookies.html
│ ├── crx.html
│ ├── debugger.html
│ ├── declarativeContent.html
│ ├── declarativeWebRequest.html
│ ├── declare_permissions.html
│ ├── desktopCapture.html
│ ├── desktop_notifications.html
│ ├── devguide.html
│ ├── devtools.html
│ ├── devtools.inspectedWindow.html
│ ├── devtools.network.html
│ ├── devtools.panels.html
│ ├── dns.html
│ ├── downloads.html
│ ├── event_pages.html
│ ├── events.html
│ ├── examples
│ │ ├── api
│ │ │ ├── bookmarks
│ │ │ │ └── basic
│ │ │ │ ├── icon.png
│ │ │ │ ├── popup.html
│ │ │ │ └── popup.js
│ │ │ ├── browserAction
│ │ │ │ ├── make_page_red
│ │ │ │ │ └── background.js
│ │ │ │ │ ├── background.js
│ │ │ │ │ └── print_16x16.png
│ │ │ │ ├── set_icon_path
│ │ │ │ │ ├── background.js
│ │ │ │ │ ├── icon1.png
│ │ │ │ │ ├── icon2.png
│ │ │ │ │ ├── icon3.png
│ │ │ │ │ ├── icon4.png
│ │ │ │ │ └── icon5.png
│ │ │ │ └── set_page_color
│ │ │ │ ├── icon.png
│ │ │ │ ├── popup.html
│ │ │ │ └── popup.js
│ │ │ ├── browsingData
│ │ │ │ └── basic
│ │ │ │ ├── icon.png
│ │ │ │ ├── popup.css
│ │ │ │ ├── popup.html
│ │ │ │ └── popup.js
│ │ │ ├── commands
│ │ │ │ ├── background.js
│ │ │ │ └── browser_action.html
│ │ │ ├── contentSettings
│ │ │ │ ├── contentSettings.png
│ │ │ │ ├── popup.html
│ │ │ │ └── popup.js
│ │ │ ├── contextMenus
│ │ │ │ ├── basic
│ │ │ │ │ └── sample.js
│ │ │ │ └── event_page
│ │ │ │ └── sample.js
│ │ │ ├── cookies
│ │ │ │ ├── background.js
│ │ │ │ ├── cookie.png
│ │ │ │ ├── manager.html
│ │ │ │ └── manager.js
│ │ │ ├── debugger
│ │ │ │ ├── live-headers
│ │ │ │ │ ├── background.js
│ │ │ │ │ ├── headers.html
│ │ │ │ │ ├── headers.js
│ │ │ │ │ └── icon.png
│ │ │ │ └── pause-resume
│ │ │ │ ├── background.js
│ │ │ │ ├── debuggerContinue.png
│ │ │ │ ├── debuggerPause.png
│ │ │ │ └── debuggerPausing.png
│ │ │ ├── desktopCapture
│ │ │ │ ├── app.js
│ │ │ │ ├── background.js
│ │ │ │ ├── icon.png
│ │ │ │ └── index.html
│ │ │ ├── deviceInfo
│ │ │ │ └── basic
│ │ │ │ ├── icon.png
│ │ │ │ ├── popup.html
│ │ │ │ └── popup.js
│ │ │ ├── devtools
│ │ │ │ ├── audits
│ │ │ │ │ └── broken-links
│ │ │ │ │ ├── background.js
│ │ │ │ │ ├── content.js
│ │ │ │ │ ├── devtools.html
│ │ │ │ │ └── devtools.js
│ │ │ │ ├── inspectedWindow
│ │ │ │ │ └── chrome-preprocessor
│ │ │ │ │ ├── chrome-preprocessor.html
│ │ │ │ │ ├── chrome-preprocessor.js
│ │ │ │ │ └── Panel
│ │ │ │ │ ├── InspectedWindowLoadMonitor.js
│ │ │ │ │ ├── PreprocessorPanel.css
│ │ │ │ │ ├── PreprocessorPanel.html
│ │ │ │ │ └── PreprocessorPanel.js
│ │ │ │ ├── network
│ │ │ │ │ └── chrome-firephp
│ │ │ │ │ ├── background.js
│ │ │ │ │ ├── devtools.html
│ │ │ │ │ └── devtools.js
│ │ │ │ └── panels
│ │ │ │ └── chrome-query
│ │ │ │ ├── devtools.html
│ │ │ │ └── devtools.js
│ │ │ ├── downloads
│ │ │ │ ├── download_filename_controller
│ │ │ │ │ ├── bg.js
│ │ │ │ │ ├── options.html
│ │ │ │ │ └── options.js
│ │ │ │ ├── download_links
│ │ │ │ │ ├── popup.html
│ │ │ │ │ ├── popup.js
│ │ │ │ │ └── send_links.js
│ │ │ │ ├── download_manager
│ │ │ │ │ ├── background.js
│ │ │ │ │ ├── icon128.png
│ │ │ │ │ ├── icon19.png
│ │ │ │ │ ├── icon38.png
│ │ │ │ │ ├── icons.html
│ │ │ │ │ ├── icons.js
│ │ │ │ │ ├── popup.css
│ │ │ │ │ ├── popup.html
│ │ │ │ │ └── popup.js
│ │ │ │ ├── download_open
│ │ │ │ │ ├── background.js
│ │ │ │ │ ├── icon128.png
│ │ │ │ │ └── icon16.png
│ │ │ │ └── downloads_overwrite
│ │ │ │ └── bg.js
│ │ │ ├── eventPage
│ │ │ │ └── basic
│ │ │ │ ├── background.js
│ │ │ │ ├── content.js
│ │ │ │ └── icon.png
│ │ │ ├── extension
│ │ │ │ └── isAllowedAccess
│ │ │ │ ├── popup.html
│ │ │ │ ├── popup.js
│ │ │ │ ├── sample-128.png
│ │ │ │ ├── sample-16.png
│ │ │ │ ├── sample-19.png
│ │ │ │ ├── sample-48.png
│ │ │ │ └── sample.css
│ │ │ ├── fontSettings
│ │ │ │ ├── css
│ │ │ │ │ ├── chrome_shared.css
│ │ │ │ │ ├── overlay.css
│ │ │ │ │ ├── uber_shared.css
│ │ │ │ │ └── widgets.css
│ │ │ │ ├── fonts128.png
│ │ │ │ ├── fonts16.png
│ │ │ │ ├── images
│ │ │ │ │ ├── check.png
│ │ │ │ │ ├── disabled_select.png
│ │ │ │ │ ├── select.png
│ │ │ │ │ ├── slider
│ │ │ │ │ │ ├── slide_bar_center.png
│ │ │ │ │ │ ├── slide_bar_disabled_center.png
│ │ │ │ │ │ ├── slide_bar_disabled_left.png
│ │ │ │ │ │ ├── slide_bar_disabled_right.png
│ │ │ │ │ │ ├── slide_bar_fill_center.png
│ │ │ │ │ │ ├── slide_bar_fill_left.png
│ │ │ │ │ │ ├── slide_bar_fill_right.png
│ │ │ │ │ │ ├── slide_bar_left.png
│ │ │ │ │ │ ├── slider_bar_right.png
│ │ │ │ │ │ ├── slider_thumb_disabled.png
│ │ │ │ │ │ ├── slider_thumb_down.png
│ │ │ │ │ │ ├── slider_thumb_hover.png
│ │ │ │ │ │ └── slider_thumb.png
│ │ │ │ │ ├── x-hover.png
│ │ │ │ │ ├── x.png
│ │ │ │ │ └── x-pressed.png
│ │ │ │ ├── js
│ │ │ │ │ ├── cr
│ │ │ │ │ │ ├── ui
│ │ │ │ │ │ │ └── overlay.js
│ │ │ │ │ │ └── ui.js
│ │ │ │ │ └── cr.js
│ │ │ │ ├── options.html
│ │ │ │ ├── options.js
│ │ │ │ ├── pending_changes.js
│ │ │ │ ├── slider.css
│ │ │ │ └── slider.js
│ │ │ ├── history
│ │ │ │ └── showHistory
│ │ │ │ ├── clock.png
│ │ │ │ ├── typedUrls.html
│ │ │ │ └── typedUrls.js
│ │ │ ├── i18n
│ │ │ │ ├── cld
│ │ │ │ │ └── background.js
│ │ │ │ ├── getMessage
│ │ │ │ │ ├── icon.png
│ │ │ │ │ ├── popup.html
│ │ │ │ │ └── popup.js
│ │ │ │ └── localizedHostedApp
│ │ │ │ └── icon128.png
│ │ │ ├── idle
│ │ │ │ └── idle_simple
│ │ │ │ ├── background.js
│ │ │ │ ├── history.html
│ │ │ │ ├── history.js
│ │ │ │ ├── sample-128.png
│ │ │ │ ├── sample-16.png
│ │ │ │ ├── sample-19.png
│ │ │ │ └── sample-48.png
│ │ │ ├── images
│ │ │ │ └── slider
│ │ │ │ ├── slide_bar_center.png
│ │ │ │ ├── slide_bar_disabled_center.png
│ │ │ │ ├── slide_bar_disabled_left.png
│ │ │ │ ├── slide_bar_disabled_right.png
│ │ │ │ ├── slide_bar_fill_center.png
│ │ │ │ ├── slide_bar_fill_left.png
│ │ │ │ ├── slider_bar_right.png
│ │ │ │ ├── slider_thumb_disabled.png
│ │ │ │ ├── slider_thumb_down.png
│ │ │ │ ├── slider_thumb_hover.png
│ │ │ │ └── slider_thumb.png
│ │ │ ├── infobars
│ │ │ │ └── sandwichbar
│ │ │ │ ├── background.js
│ │ │ │ ├── contentscript.js
│ │ │ │ ├── infobar.html
│ │ │ │ ├── infobar.js
│ │ │ │ ├── sandwich-128.png
│ │ │ │ ├── sandwich-16.png
│ │ │ │ ├── sandwich-19.png
│ │ │ │ └── sandwich-48.png
│ │ │ ├── input.ime
│ │ │ │ └── basic
│ │ │ │ ├── icon.png
│ │ │ │ └── main.js
│ │ │ ├── messaging
│ │ │ │ └── timer
│ │ │ │ ├── clock.png
│ │ │ │ ├── page.js
│ │ │ │ ├── popup.html
│ │ │ │ └── popup.js
│ │ │ ├── nativeMessaging
│ │ │ │ └── app
│ │ │ │ ├── icon-128.png
│ │ │ │ ├── main.html
│ │ │ │ └── main.js
│ │ │ ├── notifications
│ │ │ │ ├── 128.png
│ │ │ │ ├── 16.png
│ │ │ │ ├── 48.png
│ │ │ │ ├── 64.png
│ │ │ │ ├── background.js
│ │ │ │ ├── options.html
│ │ │ │ ├── options.js
│ │ │ │ └── style.css
│ │ │ ├── omnibox
│ │ │ │ └── simple-example
│ │ │ │ └── background.js
│ │ │ ├── override
│ │ │ │ ├── blank_ntp
│ │ │ │ │ └── blank.html
│ │ │ │ └── override_igoogle
│ │ │ │ └── redirect.html
│ │ │ ├── pageAction
│ │ │ │ ├── pageaction_by_content
│ │ │ │ │ ├── background.js
│ │ │ │ │ ├── contentscript.js
│ │ │ │ │ ├── sandwich-128.png
│ │ │ │ │ ├── sandwich-19.png
│ │ │ │ │ └── sandwich-48.png
│ │ │ │ ├── pageaction_by_url
│ │ │ │ │ ├── background.js
│ │ │ │ │ ├── icon-128.png
│ │ │ │ │ ├── icon-19.png
│ │ │ │ │ └── icon-48.png
│ │ │ │ └── set_icon
│ │ │ │ ├── background.html
│ │ │ │ ├── background.js
│ │ │ │ ├── icon1.png
│ │ │ │ └── icon2.png
│ │ │ ├── permissions
│ │ │ │ └── extension-questions
│ │ │ │ ├── images
│ │ │ │ │ └── icon.png
│ │ │ │ ├── options.html
│ │ │ │ ├── options.js
│ │ │ │ ├── popup.html
│ │ │ │ └── popup.js
│ │ │ ├── power
│ │ │ │ ├── background.js
│ │ │ │ └── images
│ │ │ │ ├── day-19.png
│ │ │ │ ├── day-38.png
│ │ │ │ ├── icon-128.png
│ │ │ │ ├── icon-16.png
│ │ │ │ ├── icon-48.png
│ │ │ │ ├── night-19.png
│ │ │ │ ├── night-38.png
│ │ │ │ ├── sunset-19.png
│ │ │ │ └── sunset-38.png
│ │ │ ├── preferences
│ │ │ │ ├── allowThirdPartyCookies
│ │ │ │ │ ├── advicedog.jpg
│ │ │ │ │ ├── popup.css
│ │ │ │ │ ├── popup.html
│ │ │ │ │ └── popup.js
│ │ │ │ └── enableReferrer
│ │ │ │ ├── advicedog.jpg
│ │ │ │ ├── popup.css
│ │ │ │ ├── popup.html
│ │ │ │ └── popup.js
│ │ │ ├── processes
│ │ │ │ ├── process_monitor
│ │ │ │ │ ├── icon.png
│ │ │ │ │ ├── popup.html
│ │ │ │ │ └── popup.js
│ │ │ │ └── show_tabs
│ │ │ │ ├── icon.png
│ │ │ │ ├── popup.css
│ │ │ │ ├── popup.html
│ │ │ │ └── popup.js
│ │ │ ├── storage
│ │ │ │ └── stylizr
│ │ │ │ ├── icon.png
│ │ │ │ ├── options.html
│ │ │ │ ├── options.js
│ │ │ │ ├── popup.html
│ │ │ │ └── popup.js
│ │ │ ├── tabs
│ │ │ │ ├── inspector
│ │ │ │ │ ├── background.js
│ │ │ │ │ ├── jstemplate_compiled.js
│ │ │ │ │ ├── tabs_api.html
│ │ │ │ │ └── tabs_api.js
│ │ │ │ ├── pin
│ │ │ │ │ ├── background.js
│ │ │ │ │ └── README
│ │ │ │ └── screenshot
│ │ │ │ ├── background.js
│ │ │ │ ├── camera.png
│ │ │ │ ├── screenshot.html
│ │ │ │ ├── screenshot.js
│ │ │ │ └── white.png
│ │ │ ├── topsites
│ │ │ │ ├── basic
│ │ │ │ │ ├── icon.png
│ │ │ │ │ ├── popup.html
│ │ │ │ │ └── popup.js
│ │ │ │ └── magic8ball
│ │ │ │ ├── newTab.css
│ │ │ │ ├── newTab.html
│ │ │ │ └── newTab.js
│ │ │ ├── ttsEngine
│ │ │ │ └── console_tts_engine
│ │ │ │ ├── console_tts_engine.html
│ │ │ │ └── console_tts_engine.js
│ │ │ ├── webNavigation
│ │ │ │ └── basic
│ │ │ │ ├── background.js
│ │ │ │ ├── icon.png
│ │ │ │ ├── navigation_collector.js
│ │ │ │ ├── popup.css
│ │ │ │ ├── popup.html
│ │ │ │ └── popup.js
│ │ │ └── windows
│ │ │ └── merge_windows
│ │ │ ├── arrow_in.png
│ │ │ ├── background.js
│ │ │ ├── merge_windows_128.png
│ │ │ ├── merge_windows_48.png
│ │ │ └── NOTICE
│ │ ├── apps
│ │ │ ├── background-simple
│ │ │ │ ├── background.html
│ │ │ │ ├── index.html
│ │ │ │ ├── index.js
│ │ │ │ └── README
│ │ │ └── calculator
│ │ │ └── app
│ │ │ ├── calculator.html
│ │ │ ├── controller.js
│ │ │ ├── images
│ │ │ │ ├── buttons_1x.png
│ │ │ │ ├── buttons_2x.png
│ │ │ │ ├── icon-128x128.png
│ │ │ │ └── icon-16x16.png
│ │ │ ├── LICENSE
│ │ │ ├── model.js
│ │ │ ├── style.css
│ │ │ └── view.js
│ │ ├── extensions
│ │ │ ├── app_launcher
│ │ │ │ ├── browser_action_icon.png
│ │ │ │ ├── icon.png
│ │ │ │ ├── popup.css
│ │ │ │ ├── popup.html
│ │ │ │ └── popup.js
│ │ │ ├── benchmark
│ │ │ │ ├── background.html
│ │ │ │ ├── background.js
│ │ │ │ ├── jquery
│ │ │ │ │ ├── jquery-1.8.2.min.js
│ │ │ │ │ ├── jquery.flot.dashes.js
│ │ │ │ │ └── jquery.flot.min.js
│ │ │ │ ├── jst
│ │ │ │ │ ├── jsevalcontext.js
│ │ │ │ │ ├── jstemplate.js
│ │ │ │ │ ├── jstemplate_test.js
│ │ │ │ │ └── util.js
│ │ │ │ ├── options.html
│ │ │ │ ├── options.js
│ │ │ │ ├── script.js
│ │ │ │ ├── stopwatch.jpg
│ │ │ │ └── util
│ │ │ │ ├── sorttable.js
│ │ │ │ └── table2CSV.js
│ │ │ ├── buildbot
│ │ │ │ ├── active_issues.js
│ │ │ │ ├── bg.js
│ │ │ │ ├── chromium.png
│ │ │ │ ├── icon.png
│ │ │ │ ├── options.html
│ │ │ │ ├── options.js
│ │ │ │ ├── popup.css
│ │ │ │ ├── popup.html
│ │ │ │ ├── popup.js
│ │ │ │ ├── prefs.js
│ │ │ │ ├── try_status.js
│ │ │ │ └── utils.js
│ │ │ ├── calendar
│ │ │ │ ├── images
│ │ │ │ │ ├── calendar_logo.gif
│ │ │ │ │ ├── icon-128.gif
│ │ │ │ │ ├── icon-16_bw.gif
│ │ │ │ │ └── icon-16.gif
│ │ │ │ ├── javascript
│ │ │ │ │ ├── background.js
│ │ │ │ │ ├── options.js
│ │ │ │ │ └── util.js
│ │ │ │ └── views
│ │ │ │ ├── background.html
│ │ │ │ └── options.html
│ │ │ ├── catblock
│ │ │ │ ├── background.js
│ │ │ │ └── loldogs.js
│ │ │ ├── catifier
│ │ │ │ └── event_page.js
│ │ │ ├── chrome_search
│ │ │ │ └── background.js
│ │ │ ├── email_this_page
│ │ │ │ ├── background.js
│ │ │ │ ├── content_script.js
│ │ │ │ ├── email_16x16.png
│ │ │ │ ├── mail_128x128.png
│ │ │ │ ├── options.html
│ │ │ │ └── options.js
│ │ │ ├── fx
│ │ │ │ ├── bg.js
│ │ │ │ ├── content.js
│ │ │ │ ├── icon.png
│ │ │ │ ├── options.html
│ │ │ │ └── options.js
│ │ │ ├── gdocs
│ │ │ │ ├── background.html
│ │ │ │ ├── chrome_ex_oauth.html
│ │ │ │ ├── chrome_ex_oauth.js
│ │ │ │ ├── chrome_ex_oauthsimple.js
│ │ │ │ ├── img
│ │ │ │ │ ├── docs_spreadsheets-128.gif
│ │ │ │ │ ├── docs_spreadsheets-32.gif
│ │ │ │ │ ├── docs_spreadsheets-48.gif
│ │ │ │ │ └── icons
│ │ │ │ │ ├── audio.gif
│ │ │ │ │ ├── document.gif
│ │ │ │ │ ├── file.gif
│ │ │ │ │ ├── folder.gif
│ │ │ │ │ ├── form.gif
│ │ │ │ │ ├── pdf.gif
│ │ │ │ │ ├── presentation.gif
│ │ │ │ │ ├── spreadsheet.gif
│ │ │ │ │ └── trashed.png
│ │ │ │ ├── js
│ │ │ │ │ └── jquery-1.4.1.min.js
│ │ │ │ ├── options.html
│ │ │ │ ├── popup.html
│ │ │ │ └── README
│ │ │ ├── gmail
│ │ │ │ ├── background.html
│ │ │ │ ├── background.js
│ │ │ │ ├── gmail_logged_in.png
│ │ │ │ ├── gmail_not_logged_in.png
│ │ │ │ └── icon_128.png
│ │ │ ├── imageinfo
│ │ │ │ ├── background.js
│ │ │ │ ├── imageinfo
│ │ │ │ │ ├── binaryajax.js
│ │ │ │ │ ├── exif.js
│ │ │ │ │ └── imageinfo.js
│ │ │ │ ├── imageinfo-128.png
│ │ │ │ ├── imageinfo-16.png
│ │ │ │ ├── imageinfo-19.png
│ │ │ │ ├── imageinfo-48.png
│ │ │ │ ├── info.css
│ │ │ │ ├── info.html
│ │ │ │ ├── info.js
│ │ │ │ ├── loader.gif
│ │ │ │ └── NOTICE
│ │ │ ├── mappy
│ │ │ │ ├── background.js
│ │ │ │ ├── icon.png
│ │ │ │ ├── mappy_content_script.js
│ │ │ │ ├── marker.png
│ │ │ │ ├── popup.css
│ │ │ │ ├── popup.html
│ │ │ │ └── popup.js
│ │ │ ├── maps_app
│ │ │ │ ├── 128.png
│ │ │ │ └── 24.png
│ │ │ ├── news
│ │ │ │ ├── css
│ │ │ │ │ ├── feed.css
│ │ │ │ │ └── options.css
│ │ │ │ ├── images
│ │ │ │ │ ├── buzz.png
│ │ │ │ │ ├── delete-icon.png
│ │ │ │ │ ├── fb.png
│ │ │ │ │ ├── news_action.png
│ │ │ │ │ ├── news.gif
│ │ │ │ │ ├── news_icon.png
│ │ │ │ │ ├── sprite_arrows.gif
│ │ │ │ │ └── twitter.png
│ │ │ │ ├── javascript
│ │ │ │ │ ├── feed.js
│ │ │ │ │ ├── options.js
│ │ │ │ │ └── util.js
│ │ │ │ └── views
│ │ │ │ ├── background.html
│ │ │ │ ├── feed.html
│ │ │ │ └── options.html
│ │ │ ├── news_a11y
│ │ │ │ ├── feed.css
│ │ │ │ ├── feed.html
│ │ │ │ ├── feed_iframe.css
│ │ │ │ ├── feed_iframe.js
│ │ │ │ ├── feed.js
│ │ │ │ ├── news_action.png
│ │ │ │ ├── news_icon.png
│ │ │ │ └── sprite_arrows.gif
│ │ │ ├── news_i18n
│ │ │ │ ├── feed.html
│ │ │ │ ├── news_action.png
│ │ │ │ ├── news_icon.png
│ │ │ │ └── sprite_arrows.gif
│ │ │ ├── oauth_contacts
│ │ │ │ ├── background.js
│ │ │ │ ├── chrome_ex_oauth.html
│ │ │ │ ├── chrome_ex_oauth.js
│ │ │ │ ├── chrome_ex_oauthsimple.js
│ │ │ │ ├── contacts.html
│ │ │ │ ├── contacts.js
│ │ │ │ ├── img
│ │ │ │ │ ├── icon-128.png
│ │ │ │ │ ├── icon-19-off.png
│ │ │ │ │ ├── icon-19-on.png
│ │ │ │ │ ├── icon-32.png
│ │ │ │ │ └── icon-48.png
│ │ │ │ ├── NOTICE
│ │ │ │ ├── onload.js
│ │ │ │ └── README
│ │ │ ├── plugin_settings
│ │ │ │ ├── bunny128.png
│ │ │ │ ├── bunny48.png
│ │ │ │ ├── css
│ │ │ │ │ ├── plugin_list.css
│ │ │ │ │ └── rule_list.css
│ │ │ │ ├── domui
│ │ │ │ │ ├── css
│ │ │ │ │ │ ├── button.css
│ │ │ │ │ │ ├── chrome_shared.css
│ │ │ │ │ │ ├── list.css
│ │ │ │ │ │ └── select.css
│ │ │ │ │ ├── images
│ │ │ │ │ │ └── select.png
│ │ │ │ │ └── js
│ │ │ │ │ ├── cr
│ │ │ │ │ │ ├── event_target.js
│ │ │ │ │ │ ├── ui
│ │ │ │ │ │ │ ├── array_data_model.js
│ │ │ │ │ │ │ ├── list_item.js
│ │ │ │ │ │ │ ├── list.js
│ │ │ │ │ │ │ ├── list_selection_controller.js
│ │ │ │ │ │ │ ├── list_selection_model.js
│ │ │ │ │ │ │ └── list_single_selection_model.js
│ │ │ │ │ │ └── ui.js
│ │ │ │ │ ├── cr.js
│ │ │ │ │ └── util.js
│ │ │ │ ├── js
│ │ │ │ │ ├── chrome_stubs.js
│ │ │ │ │ ├── main.js
│ │ │ │ │ ├── plugin_list.js
│ │ │ │ │ ├── plugin_list_test.html
│ │ │ │ │ ├── plugin_settings.js
│ │ │ │ │ ├── plugin_settings_test.html
│ │ │ │ │ ├── rule_list.js
│ │ │ │ │ └── rule_list_test.html
│ │ │ │ ├── options
│ │ │ │ │ ├── css
│ │ │ │ │ │ └── list.css
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── close_bar_h.png
│ │ │ │ │ │ ├── close_bar.png
│ │ │ │ │ │ └── close_bar_p.png
│ │ │ │ │ └── js
│ │ │ │ │ ├── deletable_item_list.js
│ │ │ │ │ └── inline_editable_list.js
│ │ │ │ └── options.html
│ │ │ ├── proxy_configuration
│ │ │ │ ├── background.js
│ │ │ │ ├── icon128.png
│ │ │ │ ├── icon16.png
│ │ │ │ ├── icon32.png
│ │ │ │ ├── icon48.png
│ │ │ │ ├── popup.css
│ │ │ │ ├── popup.html
│ │ │ │ ├── popup.js
│ │ │ │ ├── proxy_error_handler.js
│ │ │ │ ├── proxy_form_controller.js
│ │ │ │ └── test
│ │ │ │ ├── jsunittest.js
│ │ │ │ ├── proxy_form_controller_test.html
│ │ │ │ ├── proxy_form_controller_test.js
│ │ │ │ └── unittest.css
│ │ │ ├── speak_selection
│ │ │ │ ├── background.js
│ │ │ │ ├── content_script.js
│ │ │ │ ├── keycodes.js
│ │ │ │ ├── options.html
│ │ │ │ ├── options.js
│ │ │ │ ├── SpeakSel128.png
│ │ │ │ ├── SpeakSel16.png
│ │ │ │ ├── SpeakSel19-active.png
│ │ │ │ ├── SpeakSel19.png
│ │ │ │ ├── SpeakSel256.png
│ │ │ │ ├── SpeakSel48.png
│ │ │ │ └── tabs.js
│ │ │ ├── talking_alarm_clock
│ │ │ │ ├── background.js
│ │ │ │ ├── blank-clock-150.png
│ │ │ │ ├── blank-clock-ring1-150.png
│ │ │ │ ├── blank-clock-ring2-150.png
│ │ │ │ ├── clock-128.png
│ │ │ │ ├── clock-16.png
│ │ │ │ ├── clock-19.png
│ │ │ │ ├── clock-256.png
│ │ │ │ ├── clock-48.png
│ │ │ │ ├── clock-disabled-19.png
│ │ │ │ ├── clock-highlighted-19.png
│ │ │ │ ├── common.js
│ │ │ │ ├── credits.html
│ │ │ │ ├── play.png
│ │ │ │ ├── popup.html
│ │ │ │ └── popup.js
│ │ │ ├── ttsdebug
│ │ │ │ ├── 128.png
│ │ │ │ ├── 16.png
│ │ │ │ ├── 256.png
│ │ │ │ ├── pacman.gif
│ │ │ │ ├── ttsdebug.css
│ │ │ │ ├── ttsdebug.html
│ │ │ │ └── ttsdebug.js
│ │ │ └── ttsdemo
│ │ │ ├── 128.png
│ │ │ ├── 16.png
│ │ │ ├── 256.png
│ │ │ ├── ttsdemo.html
│ │ │ └── ttsdemo.js
│ │ ├── howto
│ │ │ ├── contentscript_xhr
│ │ │ │ ├── contentscript.js
│ │ │ │ ├── sample-128.png
│ │ │ │ └── sample-48.png
│ │ │ ├── sandbox
│ │ │ │ ├── eventpage.html
│ │ │ │ ├── eventpage.js
│ │ │ │ ├── handlebars-1.0.0.beta.6.js
│ │ │ │ ├── icon.png
│ │ │ │ └── sandbox.html
│ │ │ └── tab_shortcuts
│ │ │ └── tab_shortcuts.js
│ │ └── tutorials
│ │ ├── analytics
│ │ │ ├── analytics-extension-icon-128.png
│ │ │ ├── analytics-extension-icon-19.png
│ │ │ ├── analytics-extension-icon-48.png
│ │ │ ├── popup.html
│ │ │ └── popup.js
│ │ └── getstarted
│ │ ├── icon.png
│ │ ├── popup.html
│ │ ├── popup.js
│ │ └── _s.jpg
│ ├── experimental.devtools.audits.html
│ ├── experimental.devtools.console.html
│ ├── experimental.devtools.html
│ ├── experimental.discovery.html
│ ├── experimental.html
│ ├── extension.html
│ ├── extensions
│ │ ├── contentSecurityPolicy.html
│ │ └── overview.html
│ ├── extensions.html
│ ├── external_extensions.html
│ ├── faq.html
│ ├── fileBrowserHandler.html
│ ├── fontSettings.html
│ ├── gcm.html
│ ├── gcm_server.html
│ ├── getstarted.html
│ ├── history.html
│ ├── hosting.html
│ ├── i18n.html
│ ├── i18n-messages.html
│ ├── identity.html
│ ├── idle.html
│ ├── idltest.html
│ ├── index.html
│ ├── infobars.html
│ ├── input.ime.html
│ ├── location.html
│ ├── management.html
│ ├── manifest
│ │ ├── autoupdate.html
│ │ ├── default_locale.html
│ │ ├── description.html
│ │ ├── externally_connectable.html
│ │ ├── homepage_url.html
│ │ ├── hosting.html
│ │ ├── i18n.html
│ │ ├── icons.html
│ │ ├── incognito.html
│ │ ├── key.html
│ │ ├── manifest_version.html
│ │ ├── manifestVersion.html
│ │ ├── minimum_chrome_version.html
│ │ ├── nacl_modules.html
│ │ ├── name.html
│ │ ├── npapi.html
│ │ ├── offline_enabled.html
│ │ ├── packaging.html
│ │ ├── requirements.html
│ │ ├── runtime.html
│ │ ├── sandbox.html
│ │ ├── storage.html
│ │ ├── version.html
│ │ └── web_accessible_resources.html
│ ├── manifest.html
│ ├── manifestVersion.html
│ ├── match_patterns.html
│ ├── messaging.html
│ ├── notifications.html
│ ├── npapi.html
│ ├── omnibox.html
│ ├── options.html
│ ├── override.html
│ ├── overview.html
│ ├── packaging.html
│ ├── pageAction.html
│ ├── pageCapture.html
│ ├── permissions.html
│ ├── permission_warnings.html
│ ├── power.html
│ ├── privacy.html
│ ├── processes.html
│ ├── proxy.html
│ ├── pushMessaging.html
│ ├── runtime.html
│ ├── samples.html
│ ├── sandboxingEval.html
│ ├── sessions.html
│ ├── signedInDevices.html
│ ├── storage.html
│ ├── system.cpu.html
│ ├── system.display.html
│ ├── system.memory.html
│ ├── system.storage.html
│ ├── tabCapture.html
│ ├── tabs.html
│ ├── themes.html
│ ├── topSites.html
│ ├── ttsEngine.html
│ ├── tts.html
│ ├── tut_analytics.html
│ ├── tut_debugging.html
│ ├── tut_migration_to_manifest_v2.html
│ ├── tut_oauth.html
│ ├── tutorials.html
│ ├── types.html
│ ├── webNavigation.html
│ ├── webRequest.html
│ ├── webstore.html
│ ├── whats_new.html
│ ├── windows.html
│ └── xhr.html
├── images
│ ├── delete-icon.png
│ ├── news.gif
│ └── sprite_arrows.gif
├── javascript
│ ├── feed.js
│ ├── options.js
│ └── util.js
├── static
│ ├── css
│ │ └── site.css
│ └── images
│ └── sample-default-icon.png
└── views
└── options.html
182 directories, 729 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论