RickRollMeNot
This extension will alert you when you are about to be RickRoll'd
什么是RickRollMeNot?
RickRollMeNot是由Frank开发的Chrome扩展程序,该扩展的主要功能是“This extension will alert you when you are about to be RickRoll'd”。
扩展截图
下载RickRollMeNot扩展crx文件
下载RickRollMeNot扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Never get rickroll'd again with RickRollMeNot.
RickRollMeNot will scan links and alert you when you are about to be rickroll'd. 扩展基本信息
| 名称 | |
| ID | encfcicfiabmdmfomelgfjhmigjpnodi |
| 官方URL | https://chromewebstore.google.com/detail/rickrollmenot/encfcicfiabmdmfomelgfjhmigjpnodi |
| 简介 | This extension will alert you when you are about to be RickRoll'd |
| 文件大小 | 24.95 KB |
| 安装次数 | 141 |
| 当前版本 | 1.0 |
| 更新时间 | 2016-08-17 |
| 上架时间 | 2016-08-17 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | Frank |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "RickRollMeNot",
"description": "This extension will alert you when you are about to be RickRoll'd",
"version": "1.0",
"browser_action": {
"default_title": "RickRollMeNot",
"default_popup": "popup.html"
},
"icons": {
"16": "images\/RRMN_16.png",
"32": "images\/RRMN_32.png",
"48": "images\/RRMN_48.png",
"128": "images\/RRMN_128.png"
},
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"tool.js"
]
}
]
} | |