any-peek
peek any web page from the top icon
any-peekとは何ですか?
any-peekはrotagi37によって開発されたChromeの拡張機能で、その主な機能は「peek any web page from the top icon」です。
拡張機能のスクリーンショット
any-peek拡張機能のCRXファイルをダウンロード
any-peek拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
peek any web page from the top icon 拡張機能の基本情報
| 名前 | |
| ID | oiejnoljaonlcfbccehcbkkhabhklipe |
| 公式URL | https://chrome.google.com/webstore/detail/oiejnoljaonlcfbccehcbkkhabhklipe |
| 説明 | peek any web page from the top icon |
| ファイルサイズ | 159 KB |
| インストール数 | 10 |
| 現在のバージョン | 2.0.5.8 |
| 最終更新日 | 2019-10-04 |
| 公開日 | 2019-10-04 |
| 開発者 | rotagi37 |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "any-peek",
"manifest_version": 2,
"version": "2.0.5.8",
"icons": {
"16": "icon.png",
"32": "icon.png",
"48": "icon.png"
},
"permissions": [
"history",
"contextMenus",
"clipboardWrite",
"clipboardRead",
"webRequest",
"webRequestBlocking",
"tabs",
"https:\/\/*\/*",
"http:\/\/*\/*"
],
"options_page": "options.html",
"background": {
"scripts": [
"\/bg.js"
]
},
"browser_action": {
"default_icon": {
"16": "icon.png",
"32": "icon.png",
"48": "icon.png"
},
"default_title": "Peek Any page",
"default_popup": "popup.html"
},
"content_scripts": [
{
"all_frames": true,
"css": [],
"js": [
"jquery-3.2.1.min.js",
"cscript.js"
],
"matches": [
"https:\/\/*\/*",
"http:\/\/*\/*"
],
"run_at": "document_end"
}
]
} | |