StopLoading - Za Warudo
Stops Certain Pages to stop loading after the main content has.
StopLoading - Za Warudo क्या है?
StopLoading - Za Warudo pathway27 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Stops Certain Pages to stop loading after the main content has."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में StopLoading - Za Warudo एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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/*
एक्सटेंशन की मूल जानकारी
नाम | StopLoading - Za Warudo |
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 |
ईमेल | [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" ] } |