MarqueeMe
Why did you install this
什么是MarqueeMe?
MarqueeMe是由ByzantineFailure开发的Chrome扩展程序,该扩展的主要功能是“Why did you install this”。
下载MarqueeMe扩展crx文件
下载MarqueeMe扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Adds a "Marquee Me!" option to the right click menu on any page. Selecting it will wrap the entire page body in 扩展基本信息
| 名称 | |
| ID | aijnfcbknkhlklgjdkllkklbbjpdljkb |
| 官方URL | https://chrome.google.com/webstore/detail/marqueeme/aijnfcbknkhlklgjdkllkklbbjpdljkb |
| 简介 | Why did you install this |
| 文件大小 | 39.64 KB |
| 安装次数 | 18 |
| 当前版本 | 2.0 |
| 更新时间 | 2014-11-07 |
| 上架时间 | 2014-11-07 |
| 评分 | 4.67/5 共3次评分 |
| 开发者 | ByzantineFailure |
| 付费类型 | free |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"background": {
"scripts": [
"MarqueeMe.js"
]
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"jquery-1.11.1.min.js",
"onPage.js"
]
}
],
"manifest_version": 2,
"name": "MarqueeMe",
"description": "Why did you install this",
"version": "2.0",
"permissions": [
"contextMenus",
"tabs",
"storage"
],
"web_accessible_resources": [
"real-world.css"
],
"browser_action": {
"default_title": "Why did you install this"
},
"options_page": "options.html"
} | |