Next!
Go to the possible next page using the url structure. On ww1.gogoanime.io, go to the next episode if any.
Next! क्या है?
Next! FAB V द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Go to the possible next page using the url structure. On ww1.gogoanime.io, go to the next episode if any."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Next! एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Go to the possible next page using the url structure. More precisely, increment in the url the last number if any is found. On ww1.gogoanime.io, go to the next episode if any. I made this extension mainly because I wanted to learn how to make one. If this extension happens to be useful to you, that's great!
एक्सटेंशन की मूल जानकारी
नाम | Next! |
ID | pghjdcenfilghlfkedconkjfpbeibnao |
आधिकारिक URL | https://chromewebstore.google.com/detail/next/pghjdcenfilghlfkedconkjfpbeibnao |
विवरण | Go to the possible next page using the url structure. On ww1.gogoanime.io, go to the next episode if any. |
फ़ाइल का आकार | 94.35 KB |
स्थापना संख्या | 11 |
वर्तमान संस्करण | 1.0 |
अंतिम अपडेट | 2017-06-18 |
प्रकाशन तिथि | 2017-06-18 |
डेवलपर | FAB V |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Next!", "description": "Go to the possible next page using the url structure. On ww1.gogoanime.io, go to the next episode if any.", "version": "1.0", "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "64": "icon64.png", "128": "icon128.png", "256": "icon256.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "contentScript.js" ] } ], "browser_action": { "default_icon": "wait.png", "default_title": "Analysing" }, "permissions": [ "activeTab", "tabs" ] } |