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
拡張機能の基本情報
名前 | Simple Allow Copy |
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]" } |