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 |
| 官方網址 | 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 |
| 電子郵箱 | [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"
]
} | |