StopLoading - Za Warudo
Stops Certain Pages to stop loading after the main content has.
StopLoading - Za Warudoとは何ですか?
StopLoading - Za Warudoはpathway27によって開発されたChromeの拡張機能で、その主な機能は「Stops Certain Pages to stop loading after the main content has.」です。
拡張機能のスクリーンショット
StopLoading - Za Warudo拡張機能のCRXファイルをダウンロード
StopLoading - Za Warudo拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
A plugin that stops the page loading after the main content has loaded, getting around paywalls that shouldn't be there and any unethical scripts.
Currently works on:
- https://www.bloomberg.com/news/articles/*/*
- https://www.afr.com/*/*
- https://www.smh.com.au/*/* (Might need to refresh)
- https://www.nytimes.com/*/*",
- https://www.economist.com/*/*"
- https://www.businessinsider.com/* 拡張機能の基本情報
| 名前 | |
| ID | jmoafdddkdmbjibkplflbekbeijniadd |
| 公式URL | https://chromewebstore.google.com/detail/stoploading-za-warudo/jmoafdddkdmbjibkplflbekbeijniadd |
| 説明 | Stops Certain Pages to stop loading after the main content has. |
| ファイルサイズ | 1.85 MB |
| インストール数 | 306 |
| 現在のバージョン | 1.0.4 |
| 最終更新日 | 2022-02-27 |
| 公開日 | 2021-06-01 |
| 評価 | 5.00/5 合計 7 レビュー |
| 開発者 | pathway27 |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/pathway27/stop-loading-za-warudo |
| ヘルプページのURL | https://github.com/pathway27/stop-loading-za-warudo |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "StopLoading - Za Warudo",
"version": "1.0.4",
"icons": {
"16": "assets\/icons\/16.png",
"32": "assets\/icons\/32.png",
"48": "assets\/icons\/48.png",
"128": "assets\/icons\/128.png"
},
"description": "Stops Certain Pages to stop loading after the main content has.",
"homepage_url": "https:\/\/github.com\/pathway27\/stop-loading-za-warudo",
"short_name": "Za Warudo",
"permissions": [
"activeTab",
"https:\/\/www.bloomberg.com\/news\/*",
"https:\/\/www.afr.com\/*\/*",
"https:\/\/www.smh.com.au\/*\/*",
"https:\/\/www.nytimes.com\/*\/*",
"https:\/\/www.economist.com\/*\/*",
"https:\/\/www.businessinsider.com\/*"
],
"content_security_policy": "script-src 'self'; object-src 'self'",
"author": "pathway27",
"minimum_chrome_version": "49",
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "assets\/icons\/16.png",
"32": "assets\/icons\/32.png",
"48": "assets\/icons\/48.png",
"128": "assets\/icons\/128.png"
},
"default_title": "tiny title",
"chrome_style": false
},
"options_page": "options.html",
"options_ui": {
"page": "options.html",
"open_in_tab": true,
"chrome_style": false
},
"background": {
"scripts": [
"js\/background.bundle.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"https:\/\/www.bloomberg.com\/news\/articles\/*\/*",
"https:\/\/www.afr.com\/*\/*",
"https:\/\/www.smh.com.au\/*\/*",
"https:\/\/www.nytimes.com\/*\/*",
"https:\/\/www.economist.com\/*\/*",
"https:\/\/www.businessinsider.com\/*"
],
"js": [
"js\/contentScript.bundle.js"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
"styles\/options.css",
"js\/script.bundle.js",
"assets\/za-warudo.gif"
]
} | |