Simple Allow Copy
Allow Copy on every websites
什么是Simple Allow Copy?
Simple Allow Copy是由simpleallowcopy开发的Chrome扩展程序,该扩展的主要功能是“Allow Copy on every websites”。
扩展截图
下载Simple Allow Copy扩展crx文件
下载Simple Allow Copy扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
### DANGER ###
This extension works by intercepting user interactions, and it CAN BREAK some web pages. In these cases, just quit "copy mode"
###############
Enable copy and right-click on sites that blocked them
Usage:
- Click browser action icon to enter "copy mode" for current site
Features:
- Unlocks copy (for real)
- Remembers which site to unblock for future visits
- minimal overhead (~300 lines of code)
Source code:
https://github.com/FallenMax/chrome-extension-allow-copy
Buy me a coffee:
https://www.buymeacoffee.com/fallenmax 扩展基本信息
| 名称 | |
| ID | aefehdhdciieocakfobpaaolhipkcpgc |
| 官方URL | https://chromewebstore.google.com/detail/simple-allow-copy/aefehdhdciieocakfobpaaolhipkcpgc |
| 简介 | Allow Copy on every websites |
| 文件大小 | 19.5 KB |
| 安装次数 | 740,895 |
| 当前版本 | 0.8.3 |
| 更新时间 | 2021-01-20 |
| 上架时间 | 2019-07-04 |
| 评分 | 4.20/5 共533次评分 |
| 开发者 | simpleallowcopy |
| 付费类型 | free |
| 扩展官网 | https://github.com/FallenMax/chrome-extension-allow-copy |
| 帮助页面URL | https://github.com/FallenMax/chrome-extension-allow-copy/issues |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Simple Allow Copy",
"version": "0.8.3",
"description": "Allow Copy on every websites",
"icons": {
"16": "icons\/active.png",
"48": "icons\/active.png",
"128": "icons\/active.png"
},
"browser_action": {
"default_icon": {
"16": "icons\/inactive.png"
},
"default_title": "Allow Copy"
},
"background": {
"scripts": [
"background\/proxy.js",
"background\/config.js",
"background\/index.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"content_scripts\/proxy.js",
"content_scripts\/unlocker.js",
"content_scripts\/index.js"
],
"run_at": "document_start"
}
],
"permissions": [
"storage",
"tabs"
],
"author": "[email protected]"
} | |