Survol
Survol saves you tabs and time by previewing every link you hover
Survolとは何ですか?
Survolはhttps://survol.meによって開発されたChromeの拡張機能で、その主な機能は「Survol saves you tabs and time by previewing every link you hover」です。
拡張機能のスクリーンショット
Survol拡張機能のCRXファイルをダウンロード
Survol拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension will save you time by letting you preview links you hover instead of opening new tabs. 拡張機能の基本情報
| 名前 | |
| ID | fdnnmbmkgfdjclkgimonnimokhnndalk |
| 公式URL | https://chromewebstore.google.com/detail/survol/fdnnmbmkgfdjclkgimonnimokhnndalk |
| 説明 | Survol saves you tabs and time by previewing every link you hover |
| ファイルサイズ | 544 KB |
| インストール数 | 3,418 |
| 現在のバージョン | 6.0.0 |
| 最終更新日 | 2020-10-18 |
| 公開日 | 2020-10-07 |
| 評価 | 3.73/5 合計 11 レビュー |
| 開発者 | https://survol.me |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://survol.me |
| ヘルプページのURL | https://github.com/mdolr/survol/issues |
| 対応言語 | id,de,en,fil,fr,nl,no,tr,da,es,it,lt,pl,pt-BR,ro,fi,sv,cs,ru,uk,iw,hi,gu,ta,te,kn-IN,th,zh-CN,zh-TW,ko |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"version": "6.0.0",
"name": "__MSG_extensionName__",
"short_name": "__MSG_extensionShortName__",
"description": "__MSG_extensionDescription__",
"author": "Maxime DOLORES - mdolr",
"default_locale": "en",
"permissions": [
"https:\/\/*\/*",
"http:\/\/*\/*",
"file:\/\/\/*",
"tabs",
"activeTab",
"storage",
"unlimitedStorage"
],
"icons": {
"128": "\/images\/icon128.png"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"file:\/\/\/*\/*"
],
"js": [
"js\/templates\/wikipedia.js",
"js\/templates\/base.js",
"js\/templates\/reddit.js",
"js\/templates\/twitter.js",
"js\/templates\/youtube.js",
"js\/templates\/stackexchange.js",
"js\/templates\/soundcloud.js",
"js\/core.js"
],
"css": [
"css\/base.css",
"css\/templates\/wikipedia.css",
"css\/templates\/reddit.css",
"css\/templates\/twitter.css",
"css\/templates\/youtube.css",
"css\/templates\/stackexchange.css",
"css\/templates\/soundcloud.css"
],
"run_at": "document_start"
}
],
"background": {
"scripts": [
"js\/background\/auxiliary.js"
]
},
"browser_action": {
"default_title": "Survol",
"default_popup": "html\/popup.html"
},
"web_accessible_resources": [
"images\/upvote.png",
"images\/comment.png",
"images\/reddit.png"
]
} | |