Polymer Ready

Show an icon in the address bar when it detects some Polymer and Custom components.

什么是Polymer Ready?

Polymer Ready是由François Beaufort开发的Chrome扩展程序,该扩展的主要功能是“Show an icon in the address bar when it detects some Polymer and Custom components.”。

扩展截图

screenshot

下载Polymer Ready扩展crx文件

下载Polymer Ready扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Just a simple Chrome Extension that shows an icon in the address bar whenever it detects some Polymer and Custom components.

Source code is available at https://github.com/beaufortfrancois/polymer-ready-chrome-extension

Changelog:

0.9.2:
- Fixed extension to work with current versions of Chrome. Thank you hdelossantos@: https://github.com/beaufortfrancois/polymer-ready-chrome-extension/pull/14

0.9.1: 
- Add a tinted background highlight. Thank you (again) Eric Bidelman: https://github.com/beaufortfrancois/polymer-ready-chrome-extension/issues/1#issuecomment-235926860

0.9:
- Listen for `dom-change` events to show icon. Thank you Eric Bidelman: https://github.com/beaufortfrancois/polymer-ready-chrome-extension/issues/13#issuecomment-235654565

0.8:
- New icon ;)

0.7:
- Made popup items toggleable on click.

0.6:
- Handles Google Polymer Elements.

0.5:
- Show Page Action when "WebComponentsReady" event is fired.

0.4:
- Use https://customelementsio.herokuapp.com/ to improve speed thanks (again) to Jake Johnson

0.3:
- Find more custom elements thanks to Jake Johnson

0.2:
- Changed background page to event page
- Fixed font size                    

扩展基本信息

名称 Polymer Ready Polymer Ready
ID aaifiopbmiecbpladpjaoemohhfjcbdk
官方URL https://chromewebstore.google.com/detail/polymer-ready/aaifiopbmiecbpladpjaoemohhfjcbdk
简介 Show an icon in the address bar when it detects some Polymer and Custom components.
文件大小 14.71 KB
安装次数 577
当前版本 0.9.2
更新时间 2017-01-13
上架时间 2017-01-13
评分 4.50/5 共16次评分
开发者 François Beaufort
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Polymer Ready",
    "description": "Show an icon in the address bar when it detects some Polymer and Custom components.",
    "version": "0.9.2",
    "icons": {
        "128": "assets\/icon128.png"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                ""
            ],
            "js": [
                "polymer-ready.js"
            ],
            "run_at": "document_start"
        }
    ],
    "options_page": "options.html",
    "page_action": {
        "default_icon": {
            "19": "assets\/icon19.png",
            "38": "assets\/icon38.png"
        },
        "default_popup": "popup.html",
        "default_title": "Polymer Ready"
    },
    "permissions": [
        "storage"
    ],
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' https:\/\/elements.polymer-project.org\/catalog.json https:\/\/customelementsio.herokuapp.com; object-src 'self'"
}